|
23 | 23 | - stable |
24 | 24 |
|
25 | 25 | jobs: |
26 | | - create-pr-for-python-client: |
| 26 | + create-prs-for-repositories: |
27 | 27 | runs-on: ubuntu-latest |
28 | 28 | steps: |
29 | | - - name: Create PR from source to target branch |
30 | | - run: | |
31 | | - gh pr create --base ${{ github.event.inputs.target }} --head ${{ github.event.inputs.source }} --title '[GitHub Actions] Merge ${{ github.event.inputs.source }} -> ${{ github.event.inputs.target }}' --label OpenAPI --body 'Autogenerated Pull Request triggered by Github Actions in OpenAPI repository' --repo regulaforensics/DocumentReader-web-python-client |
32 | | - gh pr create --base ${{ github.event.inputs.target }} --head ${{ github.event.inputs.source }} --title '[GitHub Actions] Merge ${{ github.event.inputs.source }} -> ${{ github.event.inputs.target }}' --label OpenAPI --body 'Autogenerated Pull Request triggered by Github Actions in OpenAPI repository' --repo regulaforensics/DocumentReader-web-js-client |
33 | | - gh pr create --base ${{ github.event.inputs.target }} --head ${{ github.event.inputs.source }} --title '[GitHub Actions] Merge ${{ github.event.inputs.source }} -> ${{ github.event.inputs.target }}' --label OpenAPI --body 'Autogenerated Pull Request triggered by Github Actions in OpenAPI repository' --repo regulaforensics/DocumentReader-web-java-client |
34 | | - gh pr create --base ${{ github.event.inputs.target }} --head ${{ github.event.inputs.source }} --title '[GitHub Actions] Merge ${{ github.event.inputs.source }} -> ${{ github.event.inputs.target }}' --label OpenAPI --body 'Autogenerated Pull Request triggered by Github Actions in OpenAPI repository' --repo regulaforensics/DocumentReader-web-csharp-client |
35 | | - gh pr create --base ${{ github.event.inputs.target }} --head ${{ github.event.inputs.source }} --title '[GitHub Actions] Merge ${{ github.event.inputs.source }} -> ${{ github.event.inputs.target }}' --label OpenAPI --body 'Autogenerated Pull Request triggered by Github Actions in OpenAPI repository' --repo regulaforensics/DocumentReader-web-openapi |
| 29 | + - name: Create PR for Python WebClient Repo |
| 30 | + run: gh pr create --base ${{ inputs.target_branch }} --head ${{ inputs.source_branch }} --title '[GitHub Actions] Merge ${{ inputs.source_branch }} -> ${{ inputs.target_branch }}' --label OpenAPI --body 'Autogenerated Pull Request triggered by Github Actions in OpenAPI repository' --repo regulaforensics/DocumentReader-web-python-client |
| 31 | + env: |
| 32 | + GITHUB_TOKEN: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }} |
| 33 | + - name: Create PR for Java WebClient Repo |
| 34 | + run: gh pr create --base ${{ inputs.target_branch }} --head ${{ inputs.source_branch }} --title '[GitHub Actions] Merge ${{ inputs.source_branch }} -> ${{ inputs.target_branch }}' --label OpenAPI --body 'Autogenerated Pull Request triggered by Github Actions in OpenAPI repository' --repo regulaforensics/DocumentReader-web-java-client |
| 35 | + env: |
| 36 | + GITHUB_TOKEN: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }} |
| 37 | + - name: Create PR for JS WebClient Repo |
| 38 | + run: gh pr create --base ${{ inputs.target_branch }} --head ${{ inputs.source_branch }} --title '[GitHub Actions] Merge ${{ inputs.source_branch }} -> ${{ inputs.target_branch }}' --label OpenAPI --body 'Autogenerated Pull Request triggered by Github Actions in OpenAPI repository' --repo regulaforensics/DocumentReader-web-js-client |
| 39 | + env: |
| 40 | + GITHUB_TOKEN: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }} |
| 41 | + - name: Create PR for CSharp WebClient Repo |
| 42 | + run: gh pr create --base ${{ inputs.target_branch }} --head ${{ inputs.source_branch }} --title '[GitHub Actions] Merge ${{ inputs.source_branch }} -> ${{ inputs.target_branch }}' --label OpenAPI --body 'Autogenerated Pull Request triggered by Github Actions in OpenAPI repository' --repo regulaforensics/DocumentReader-web-csharp-client |
| 43 | + env: |
| 44 | + GITHUB_TOKEN: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }} |
| 45 | + - name: Create PR for OpenAPI Repo |
| 46 | + run: gh pr create --base ${{ inputs.target_branch }} --head ${{ inputs.source_branch }} --title '[GitHub Actions] Merge ${{ inputs.source_branch }} -> ${{ inputs.target_branch }}' --label OpenAPI --body 'Autogenerated Pull Request triggered by Github Actions in OpenAPI repository' --repo regulaforensics/DocumentReader-web-openapi |
36 | 47 | env: |
37 | 48 | GITHUB_TOKEN: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }} |
0 commit comments