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 3442223 commit cfc0913Copy full SHA for cfc0913
1 file changed
.github/workflows/release.yml
@@ -223,9 +223,12 @@ jobs:
223
git push origin
224
225
- name: pull-request
226
- uses: repo-sync/pull-request@v2
227
- with:
228
- destination_branch: "develop"
229
- pr_title: "Sync back"
230
- pr_body: "An automated PR to sync changes back"
231
-
+ env:
+ GH_TOKEN: ${{ github.token }}
+ run: |
+ gh_pr_up() {
+ gh pr create "$@" || gh pr edit "$@"
+ }
232
+ gh_pr_up -B "develop" \
233
+ --title "Sync back" \
234
+ --body "An automated PR to sync changes back"
0 commit comments