This repository was archived by the owner on Nov 17, 2025. It is now read-only.
Pre-commit auto-update #138
This file contains hidden or 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
| name: Pre-commit auto-update | |
| on: | |
| # Every day at midnight | |
| schedule: | |
| # Automatically run on 07:27 UTC every Monday | |
| - cron: '27 7 * * 1' | |
| # On demand | |
| workflow_dispatch: | |
| jobs: | |
| auto-update: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| cache: "pip" | |
| cache-dependency-path: "pyproject.toml" | |
| - uses: browniebroke/pre-commit-autoupdate-action@main | |
| - uses: peter-evans/create-pull-request@v5 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| branch: update/pre-commit-hooks | |
| title: Update pre-commit hooks | |
| commit-message: "Update pre-commit hook versions" | |
| body: Update pre-commit hooks to their latest versions. |