Skip to content

Bump ruff from 0.7.0 to 0.7.1 #24

Bump ruff from 0.7.0 to 0.7.1

Bump ruff from 0.7.0 to 0.7.1 #24

Workflow file for this run

name: Merge PRs
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
merge:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]' && github.repository == 'josh/imdb-trakt-sync'
steps:
- name: Dependabot metadata
id: dependabot-metadata
uses: dependabot/fetch-metadata@v2
- name: Enable auto-merge
if: steps.dependabot-metadata.outputs.update-type != 'version-update:semver-major'
run: gh pr merge --merge --auto "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ github.token }}