-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run pre-commit autoupdate and add a monthly workflow to update hooks. Signed-off-by: Maryam Tahhan <[email protected]>
- Loading branch information
1 parent
f500890
commit 291371a
Showing
2 changed files
with
28 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Pre-commit auto-update | ||
on: # yamllint disable-line rule:truthy | ||
schedule: | ||
- cron: 0 0 1 * * | ||
jobs: | ||
auto-update: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
- name: Install pre-commit | ||
run: pip install pre-commit | ||
- name: Run pre-commit autoupdate | ||
run: pre-commit autoupdate | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v7 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
branch: update/pre-commit-autoupdate | ||
title: Auto-update pre-commit hooks | ||
commit-message: Auto-update pre-commit hooks | ||
body: | | ||
Update pre-commit hooks to latest version | ||
labels: dependencies |
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