Bump mypy from 1.11.2 to 1.12.0 (#5124) #167
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Auto-update PRs when other PRs are merged. | |
# See https://github.com/marketplace/actions/auto-update | |
name: autoupdate | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
autoupdate: | |
name: autoupdate | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: docker://chinthakagodawita/autoupdate-action:v1 | |
env: | |
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | |
# Work on PRs against branches that are protected (so they need to be | |
# up to date) | |
PR_FILTER: "protected" | |
# Don't work on draft PRs | |
PR_READY_STATE: "ready_for_review" | |
# Don't fail on the triggering commit if it makes a merge conflict | |
# with a PR and the PR can't update | |
MERGE_CONFLICT_ACTION: "ignore" |