We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8f59e0 commit 07b1823Copy full SHA for 07b1823
1 file changed
.github/workflows/release.yml
@@ -198,8 +198,12 @@ jobs:
198
git push origin
199
200
- name: pull-request
201
- uses: repo-sync/pull-request@v2
202
- with:
203
- destination_branch: "develop"
204
- pr_title: "Sync back"
205
- pr_body: "An automated PR to sync changes back"
+ env:
+ GH_TOKEN: ${{ github.token }}
+ run: |
+ gh_pr_up() {
+ gh pr create "$@" || gh pr edit "$@"
206
+ }
207
+ gh_pr_up -B "develop" \
208
+ --title "Sync back" \
209
+ --body "An automated PR to sync changes back"
0 commit comments