Skip to content

Commit

Permalink
Add more permissions to auto-merge workflow 🔓
Browse files Browse the repository at this point in the history
Still trying to fix

```
GraphQL: Resource not accessible by integration (mergePullRequest)
```

See https://github.com/janraasch/hugo-bearblog/actions/runs/7624250504/job/20766236838

and cli/cli#7617
  • Loading branch information
janraasch committed Jan 23, 2024
1 parent d255667 commit 2e4a4c2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:

permissions:
issues: write
contents: write
pull-requests: write

jobs:
Expand All @@ -21,9 +22,7 @@ jobs:
github-token: '${{ secrets.GITHUB_TOKEN }}'
- name: Enable auto-merge for Dependabot PRs
if: contains(fromJSON('["version-update:semver-patch", "version-update:semver-minor"]'), steps.dependabot-metadata.outputs.update-type)
run: |
gh pr review --approve "$PR_URL"
gh pr merge --auto --squash "$PR_URL"
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 comments on commit 2e4a4c2

Please sign in to comment.