We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d630d90 commit 09e4599Copy full SHA for 09e4599
1 file changed
.github/workflows/sync-release-to-main.yaml
@@ -43,12 +43,12 @@ jobs:
43
--body "Automated sync of release tags back to main."
44
fi
45
46
- - name: Auto-merge sync PR
+ - name: Enable auto-merge on sync PR
47
if: steps.check.outputs.ahead != '0'
48
env:
49
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
50
run: |
51
PR=$(gh pr list --repo ${{ github.repository }} --base main --head release --state open --json number --jq '.[0].number')
52
if [ -n "$PR" ]; then
53
- gh pr merge "$PR" --repo ${{ github.repository }} --merge
+ gh pr merge "$PR" --repo ${{ github.repository }} --merge --auto
54
0 commit comments