Skip to content

Commit

Permalink
Merge pull request #373 from traPtitech/dev/autoMerge
Browse files Browse the repository at this point in the history
impl: auto patch merge
  • Loading branch information
Pugma authored Oct 17, 2024
2 parents a980e86 + 48ba648 commit f87cf00
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/auto-merge.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Auto Merge (Dependabot)

on:
pull_request:
branches: 'main'

permissions:
contents: write
pull-requests: write

jobs:
AutoMerge:
name: Approve patch PR
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'owner/my_repo'
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/[email protected]
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: contains(steps.metadata.outputs.dependency-names, 'my-dependency') && steps.metadata.outputs.update-type == 'version-update:semver-patch'
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 f87cf00

Please sign in to comment.