Skip to content

build(deps-dev): bump ruff from 0.16.4 to 0.16.5 #51

build(deps-dev): bump ruff from 0.16.4 to 0.16.5

build(deps-dev): bump ruff from 0.16.4 to 0.16.5 #51

name: Dependabot Auto-Merge
on:
pull_request:
branches: [main]
permissions:
contents: write
pull-requests: write
jobs:
auto-merge:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- uses: dependabot/fetch-metadata@v3
id: metadata
- name: Enable auto-merge for patch/minor updates
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 }}