Skip to content

chore: update ruff requirement from ~=0.8.1 to ~=0.9.4 in /{{cookiecutter.repo_name}} #2

chore: update ruff requirement from ~=0.8.1 to ~=0.9.4 in /{{cookiecutter.repo_name}}

chore: update ruff requirement from ~=0.8.1 to ~=0.9.4 in /{{cookiecutter.repo_name}} #2

Workflow file for this run

name: Dependabot Auto-merge
on:
pull_request:
types: [opened]
permissions:
contents: write
pull-requests: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- name: Enable auto-merge for Dependabot PRs
# don't include verbose dependabot PR description as body when merging
run: gh pr merge --auto --squash "$PR_URL" --body ""
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}