Skip to content

Commit

Permalink
♻️ update auto-approve-dependabot.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ImJustLucas authored Sep 7, 2024
1 parent db767e2 commit 098b44a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/auto-approve-dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: Dependabot auto-approve
name: Dependabot auto-approve and merge
on: pull_request

permissions:
pull-requests: write
contents: write

jobs:
dependabot:
Expand All @@ -14,8 +15,16 @@ jobs:
uses: dependabot/fetch-metadata@v1
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"

- name: Approve a PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}

- name: Enable auto-merge for Dependabot PRs
if: steps.metadata.outputs.update-type != 'version-update:semver-major'
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 comments on commit 098b44a

Please sign in to comment.