-
Notifications
You must be signed in to change notification settings - Fork 5
32 lines (30 loc) · 944 Bytes
/
pre-commit-autoupdate.yml
File metadata and controls
32 lines (30 loc) · 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Pre-commit auto-update
on:
# every Monday at midnight
schedule:
- cron: "0 0 * * 1"
# on demand
workflow_dispatch:
jobs:
pre-commit-autoupdate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Cache multiple paths
uses: actions/cache@v4
with:
path: |
~/.cache/pip
~/.cache/pre-commit
key: ${{ runner.os }}-3.11-${{ hashFiles('**/.pre-commit-config.yaml') }}
- uses: browniebroke/pre-commit-autoupdate-action@main
- uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: update/pre-commit-hooks
title: Update pre-commit hooks
commit-message: "chore: update pre-commit hooks"
body: Update versions of pre-commit hooks to latest version.