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 99c0067 commit 51d48f9Copy full SHA for 51d48f9
.github/workflows/approve-merge.yml
@@ -34,16 +34,16 @@ jobs:
34
uses: actions/checkout@v3
35
with:
36
ref: ${{ github.event.pull_request.head.sha }} # Checkout the PR's head commit
37
- token: ${{ secrets.GH_TOKEN_RELEASE }}
+ token: ${{ secrets.GH_MERGE_TOKEN }}
38
39
- name: Approve PR
40
run: gh pr review --approve "$PR_URL"
41
env:
42
PR_URL: ${{ github.event.pull_request.html_url }}
43
- GH_TOKEN: ${{ secrets.GH_TOKEN_RELEASE }}
+ GH_TOKEN: ${{ secrets.GH_MERGE_TOKEN }}
44
45
- name: Merge PR
46
run: gh pr merge --auto --squash --delete-branch "$PR_URL"
47
48
49
0 commit comments