1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-13 11:06:14 +02:00

Automating Dependabot with GitHub Actions

Signed-off-by: utam0k <k0ma@utam0k.jp>
This commit is contained in:
utam0k 2023-01-16 21:22:06 +09:00
parent e6478c0a30
commit fc43c1eff0
No known key found for this signature in database
GPG Key ID: E9844426F4EA9E67

42
.github/workflows/dependabot_auto.yaml vendored Normal file
View File

@ -0,0 +1,42 @@
name: Dependabot automation
on:
pull_request:
types:
- opened
permissions:
pull-requests: write
contents: write
repository-projects: write
jobs:
dependabot-automation:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1.3.5
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Approve & enable auto-merge for Dependabot PR
if: |
steps.metadata.outputs.update-type == 'version-update:semver-patch'
run: |
gh pr review --approve "$PR_URL"
gh pr edit "$PR_URL" -t "(auto merged) $PR_TITLE"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
PR_TITLE: ${{ github.event.pull_request.title }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Automerge
id: automerge
uses: pascalgn/automerge-action@v0.15.5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MERGE_LABELS: dependencies
MERGE_REQUIRED_APPROVALS: 1
MERGE_RETRY_SLEEP: 120000
MERGE_DELETE_BRANCH: true
MERGE_FILTER_AUTHOR: dependabot[bot]