Skip to content

Instantly share code, notes, and snippets.

@bennycode
Created March 23, 2022 17:01
Show Gist options
  • Save bennycode/0a95f6f5afa8de209d429db1946e504c to your computer and use it in GitHub Desktop.
Save bennycode/0a95f6f5afa8de209d429db1946e504c to your computer and use it in GitHub Desktop.
name: 'Merge Dependencies'
# https://github.blog/changelog/2021-02-19-github-actions-workflows-triggered-by-dependabot-prs-will-run-with-read-only-permissions/
on: [pull_request_target]
permissions:
pull-requests: write
contents: write
jobs:
auto-merge:
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }}
steps:
- name: Automatically merge the dependency
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GH_AUTOMERGE_TOKEN }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment