Skip to content

Commit

Permalink
Fix dependabot automerge.
Browse files Browse the repository at this point in the history
The important change 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 fd0f77b commit 4bd1224
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/dependabot-automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- 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}}
GITHUB_TOKEN: ${{secrets.DIVVIUP_GITHUB_AUTOMATION_DEPENDABOT_APPROVER_PAT}}
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.DIVVIUP_GITHUB_AUTOMATION_DEPENDABOT_APPROVER_PAT }}

0 comments on commit 4bd1224

Please sign in to comment.