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 856953b commit 1d5430eCopy full SHA for 1d5430e
.github/workflows/gitflow-sync-develop.yml
@@ -39,13 +39,13 @@ jobs:
39
github_token: ${{ secrets.REPO_SCOPED_TOKEN }}
40
41
- name: Enable automerge for PR
42
- run: gh pr merge --merge --auto "1"
+ if: steps.open-pr.outputs.pr_number != ''
43
+ run: gh pr merge --merge --auto "${{ steps.open-pr.outputs.pr_number }}"
44
env:
45
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
46
47
# https://github.com/marketplace/actions/auto-approve
48
- name: Auto approve PR
- # Always skip this for now, until we got a proper bot setup
49
if: steps.open-pr.outputs.pr_number != ''
50
uses: hmarr/auto-approve-action@v3
51
with:
0 commit comments