Skip to content

chore(deps-dev): bump the dev-dependencies group across 1 directory with 6 updates #6

chore(deps-dev): bump the dev-dependencies group across 1 directory with 6 updates

chore(deps-dev): bump the dev-dependencies group across 1 directory with 6 updates #6

# Dependabot auto-merge -- life's too short to click "merge" on patch bumps.
name: Dependabot Auto-merge
on:
pull_request:
permissions:
contents: write
pull-requests: write
jobs:
automerge:
name: Auto-merge
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Fetch Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
# Auto-merge patch and minor updates -- majors need a human
- name: Auto-merge
if: steps.metadata.outputs.update-type != 'version-update:semver-major'
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}