Skip to content

Commit f797db0

Browse files
author
rchxx
committed
update wf
1 parent a923f23 commit f797db0

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/make-prs-for-client-repos.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,29 +23,41 @@ on:
2323
- stable
2424

2525
jobs:
26-
create-prs-for-repositories:
26+
python-webclient-pr:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- name: Create PR for Python WebClient Repo
3030
continue-on-error: true
3131
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
3232
env:
3333
GITHUB_TOKEN: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }}
34+
java-webclient-pr:
35+
runs-on: ubuntu-latest
36+
steps:
3437
- name: Create PR for Java WebClient Repo
3538
continue-on-error: true
3639
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
3740
env:
3841
GITHUB_TOKEN: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }}
42+
js-webclient-pr:
43+
runs-on: ubuntu-latest
44+
steps:
3945
- name: Create PR for JS WebClient Repo
4046
continue-on-error: true
4147
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
4248
env:
4349
GITHUB_TOKEN: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }}
50+
csharp-webclient-pr:
51+
runs-on: ubuntu-latest
52+
steps:
4453
- name: Create PR for CSharp WebClient Repo
4554
continue-on-error: true
4655
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
4756
env:
4857
GITHUB_TOKEN: ${{ secrets.REGULA_GITHUB_PUSH_TOKEN }}
58+
openapi-pr:
59+
runs-on: ubuntu-latest
60+
steps:
4961
- name: Create PR for OpenAPI Repo
5062
continue-on-error: true
5163
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

0 commit comments

Comments
 (0)