Skip to content

Bump next from 16.1.1 to 16.1.5 in the npm_and_yarn group across 1 directory #37

Bump next from 16.1.1 to 16.1.5 in the npm_and_yarn group across 1 directory

Bump next from 16.1.1 to 16.1.5 in the npm_and_yarn group across 1 directory #37

name: Auto-merge Dependabot
on:
pull_request:
types: [opened, synchronize]
permissions:
pull-requests: write
contents: write
jobs:
auto-merge:
if: github.actor == 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- name: Fetch Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
# Only auto-merge patch and minor updates (not major)
- name: Auto-merge safe updates
if: steps.metadata.outputs.update-type != 'version-update:semver-major'
run: gh pr merge ${{ github.event.pull_request.number }} --squash --admin
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}