Skip to content

Commit

Permalink
Fix dependabot automerge.
Browse files Browse the repository at this point in the history
The important fix is GITHUB_TOKEN -> GH_TOKEN. Despite the gh CLI
allowing either, apparently in the context of Github Actions
GITHUB_TOKEN is not allowed.
  • Loading branch information
branlwyd committed Sep 20, 2023
1 parent 214446b commit 56caf65
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/dependabot-automerge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Dependabot auto-merge
on: pull_request

jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
- name: Approve & enable auto-merge for Dependabot PRs
run: gh pr review --approve -b "Auto-approving dependabot PR." "$PR_URL" && gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.DIVVIUP_GITHUB_AUTOMATION_DEPENDABOT_APPROVER_PAT }}

0 comments on commit 56caf65

Please sign in to comment.