Update pre-commit hooks #14
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
name: Update pre-commit hooks | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: 0 0 * * * | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.1.0 | |
with: | |
fetch-depth: 0 | |
- uses: vrslev/pre-commit-autoupdate@v1.0.0 | |
- uses: peter-evans/create-pull-request@v5 | |
with: | |
branch: pre-commit-autoupdate | |
title: "chore(deps): Update pre-commit hooks" | |
commit-message: "chore(deps): Update pre-commit hooks" | |
body: Update pre-commit hooks | |
labels: dependencies | |
delete-branch: True |