Pre-commit autoupdate #32
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 autoupdate | |
| on: | |
| # Run weekly on Monday at 0700AM | |
| schedule: | |
| - cron: "0 7 * * MON" | |
| # Allow a manual trigger | |
| workflow_dispatch: | |
| jobs: | |
| update: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Run pre-commit autoupdate | |
| uses: fuzzylabs/pre-commit-autoupdate-action@v1 | |
| with: | |
| python-version: "3.12" |