diff options
author | Jan Raasch <425211+janraasch@users.noreply.github.com> | 2024-01-23 12:06:26 +0100 |
---|---|---|
committer | Jan Raasch <425211+janraasch@users.noreply.github.com> | 2024-01-23 12:08:55 +0100 |
commit | 2e4a4c2424f2ff6764902ebe2fa75d7ef3f053a9 (patch) | |
tree | 33fd57dd81d71a84afe58099c0534777bec4a92c | |
parent | d255667dfb5ff4a7dedfe60f7e9222c9c6c72041 (diff) | |
download | hugo-bearcub-2e4a4c2424f2ff6764902ebe2fa75d7ef3f053a9.tar.gz hugo-bearcub-2e4a4c2424f2ff6764902ebe2fa75d7ef3f053a9.tar.bz2 |
Add more permissions to auto-merge workflow 🔓
Still trying to fix
```
GraphQL: Resource not accessible by integration (mergePullRequest)
```
See https://github.com/janraasch/hugo-bearblog/actions/runs/7624250504/job/20766236838
and https://github.com/cli/cli/discussions/7617
-rw-r--r-- | .github/workflows/auto-merge.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml index 3ea4f02..fe1ffd8 100644 --- a/.github/workflows/auto-merge.yml +++ b/.github/workflows/auto-merge.yml @@ -7,6 +7,7 @@ on: permissions: issues: write + contents: write pull-requests: write jobs: @@ -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}} |