mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-24 23:21:12 -05:00
Configure automation for dependency updates (#4648)
* Configure automation for dependency updates * Configure automation for dependency updates
This commit is contained in:
parent
3703f392e8
commit
4847ddc86b
1 changed files with 36 additions and 0 deletions
36
.github/workflows/dependabot-automation.yaml
vendored
Normal file
36
.github/workflows/dependabot-automation.yaml
vendored
Normal file
|
@ -0,0 +1,36 @@
|
|||
---
|
||||
name: Dependabot automation
|
||||
|
||||
on: # yamllint disable-line rule:truthy
|
||||
pull_request:
|
||||
types:
|
||||
- opened
|
||||
- synchronize
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
pull-requests: write
|
||||
|
||||
jobs:
|
||||
dependabot:
|
||||
env:
|
||||
PR_URL: ${{github.event.pull_request.html_url}}
|
||||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
||||
runs-on: ubuntu-latest
|
||||
if: github.actor == 'dependabot[bot]'
|
||||
steps:
|
||||
- name: Fetch Dependabot metadata
|
||||
id: metadata
|
||||
uses: dependabot/fetch-metadata@v1
|
||||
with:
|
||||
github-token: "${{ secrets.GITHUB_TOKEN }}"
|
||||
- name: Approve the PR
|
||||
run: gh pr review --approve "${PR_URL}"
|
||||
- name: Enable auto-merge for patch updates PR
|
||||
if: >
|
||||
steps.metadata.outputs.update-type == 'version-update:semver-patch'
|
||||
|| steps.metadata.outputs.dependency-names == 'actions/checkout'
|
||||
|| steps.metadata.outputs.dependency-names == 'docker/setup-buildx-action'
|
||||
|| steps.metadata.outputs.dependency-names == 'docker/metadata-action'
|
||||
run: gh pr merge --auto --squash --delete-branch "${PR_URL}"
|
||||
...
|
Loading…
Reference in a new issue