Skip to content

Bump the all-npm group with 5 updates #65

Bump the all-npm group with 5 updates

Bump the all-npm group with 5 updates #65

name: Enable auto-merge on Dependabot PRs
on: pull_request
permissions:
pull-requests: write
contents: write
jobs:
enable-auto-merge:
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Enable Pull Request Automerge
run: gh pr merge --squash --auto ${{ github.event.pull_request.number }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}