mirror of
https://github.com/System-End/My-website.git
synced 2026-04-19 16:28:16 +00:00
ci: add auto-approve and auto-merge for dependabot minor/patch PRs
This commit is contained in:
parent
b92f96f7bd
commit
b32176dfd6
1 changed files with 35 additions and 0 deletions
35
.github/workflows/dependabot-review.yml
vendored
Normal file
35
.github/workflows/dependabot-review.yml
vendored
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
name: Dependabot Auto-Review
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
pull-requests: write
|
||||
|
||||
jobs:
|
||||
auto-review:
|
||||
name: Auto-approve & merge
|
||||
runs-on: ubuntu-latest
|
||||
if: github.actor == 'dependabot[bot]'
|
||||
|
||||
steps:
|
||||
- name: Fetch Dependabot metadata
|
||||
id: metadata
|
||||
uses: dependabot/fetch-metadata@v2
|
||||
with:
|
||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Auto-approve minor and patch updates
|
||||
if: steps.metadata.outputs.update-type != 'version-update:semver-major'
|
||||
run: gh pr review --approve "$PR_URL"
|
||||
env:
|
||||
PR_URL: ${{ github.event.pull_request.html_url }}
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Auto-merge minor and patch updates
|
||||
if: steps.metadata.outputs.update-type != 'version-update:semver-major'
|
||||
run: gh pr merge --auto --squash "$PR_URL"
|
||||
env:
|
||||
PR_URL: ${{ github.event.pull_request.html_url }}
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
Loading…
Add table
Reference in a new issue