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 a747909 commit ff076a5Copy full SHA for ff076a5
.github/workflows/publish_release.yml
@@ -67,11 +67,17 @@ jobs:
67
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
68
69
70
- - name: Merge PR
+ - name: Authenticate gh with PAT
71
run: |
72
- gh pr merge ${{ steps.pr.outputs.pr_number }} --squash --admin
+ echo "${{ secrets.MERGE_PAT }}" | gh auth login --with-token
73
+
74
75
+ - name: Merge PR as PAT user
76
+ run: |
77
+ gh pr merge "${{ steps.pr.outputs.pr_number }}" --squash --body "Merge VERSION update" --admin
78
env:
79
80
81
82
- name: Wait for PR merge
83
uses: actions/github-script@v7
0 commit comments