Skip to content

Commit

Permalink
Create auto-approve-and-merge.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
em-c-rod authored Aug 23, 2023
1 parent 73c4528 commit cce9fea
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/auto-approve-and-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Auto approve and Merge Dependabot PRs
on:
pull_request_target:
types: [labeled]
permissions:
pull-requests: write
contents: write

jobs:
approve:
name: Auto-approve dependabot PRs
if: github.event.pull_request.user.login == 'dependabot[bot]' && contains(github.event.pull_request.labels.*.name, 'dependencies')
runs-on: ubuntu-latest
steps:
- uses: hmarr/auto-approve-action@v3
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 comments on commit cce9fea

Please sign in to comment.