Dependabot automation #41
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dependabot automation | |
on: | |
pull_request: | |
types: | |
- opened | |
workflow_dispatch: | |
permissions: | |
pull-requests: write # approve/merge に必要 | |
contents: write # merge に必要 | |
repository-projects: write # PRタイトル変更等に必要 | |
jobs: | |
dependabot-automation: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
timeout-minutes: 13 | |
steps: | |
- name: Dependabot metadata | |
id: metadata | |
uses: dependabot/[email protected] | |
with: | |
GITHUB_TOKEN: ${{ secrets.github-token }} | |
- name: Approve & enable auto-merge for Dependabot PR | |
if: | | |
steps.metadata.outputs.update-type == 'version-update:semver-patch' || | |
steps.metadata.outputs.update-type == 'version-update:semver-minor' | |
run: | | |
gh pr review --approve "$PR_URL" | |
gh pr edit "$PR_URL" -t "(auto merged) $PR_TITLE" | |
gh pr merge --auto --merge "$PR_URL" | |
env: | |
PR_URL: ${{ github.event.pull_request.html_url }} | |
PR_TITLE: ${{ github.event.pull_request.title }} | |
GITHUB_TOKEN: ${{ secrets.github-token }} |