Skip to content

Commit

Permalink
Merge pull request #1456 from webauthn4j/add-auto-merge
Browse files Browse the repository at this point in the history
Add Auto Merge workflow
  • Loading branch information
ynojima authored Jun 25, 2024
2 parents 5c002ae + 7b58be0 commit 68e1c51
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/auto-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Auto Merge

on: pull_request

jobs:
auto-merge:
name: Auto Merge
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
env:
GH_TOKEN: ${{ github.token }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Merge
run: gh pr merge "${GITHUB_HEAD_REF}" --merge --auto

0 comments on commit 68e1c51

Please sign in to comment.