Merge pull request #174 from luisa-beerboom/b-2503-allow-to-edit-own-… #97
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Create PRs on each update | |
on: | |
push: | |
branches: | |
- main | |
- staging/4* | |
jobs: | |
create-pull-requests: | |
name: Create PR for dependant services | |
if: github.repository_owner == 'OpenSlides' | |
uses: ./.github/workflows/create-pr.yml | |
with: | |
repository: ${{ matrix.repository }} | |
commit: ${{ github.sha }} | |
assignee: ${{ matrix.assignee }} | |
setup-action: ${{ matrix.setup-action }} | |
secrets: inherit | |
strategy: | |
matrix: | |
include: | |
- repository: openslides-autoupdate-service | |
assignee: ostcar | |
setup-action: setup-autoupdate-pr | |
- repository: openslides-backend | |
assignee: r-peschke | |
- repository: openslides-client | |
assignee: bastianjoel | |
- repository: openslides-search-service | |
assignee: bastianjoel |