Skip to content

chore(deps): bump the prod-dependencies group with 6 updates #6

chore(deps): bump the prod-dependencies group with 6 updates

chore(deps): bump the prod-dependencies group with 6 updates #6

name: Dependabot Auto-merge
on:
pull_request:
types: [opened, reopened, synchronize]
permissions:
pull-requests: write
contents: write
jobs:
auto-merge:
name: Auto-merge patch & minor
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'exectx/t3-cloudflare'
steps:
- uses: actions/checkout@v6
- uses: dependabot/fetch-metadata@v2
id: metadata
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
# Auto-merge patch/minor only — majors require manual review
- name: Enable 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 }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}