-
-
Notifications
You must be signed in to change notification settings - Fork 66
36 lines (29 loc) · 876 Bytes
/
pre-commit-autoupdate.yml
File metadata and controls
36 lines (29 loc) · 876 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
33
34
35
36
name: 'Update pre-commit hooks'
on:
schedule:
- cron: '0 8 * * 1'
workflow_dispatch: {}
permissions:
contents: 'write'
pull-requests: 'write'
jobs:
update:
runs-on: 'ubuntu-latest'
steps:
- name: 'Checkout repository'
uses: 'actions/checkout@v4'
- name: 'Set up Python'
uses: 'actions/setup-python@v5'
with:
python-version: '3.12'
- 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@v8'
with:
commit-message: 'chore: update pre-commit hooks'
title: 'chore: update pre-commit hooks'
body: 'Automatic pre-commit hook version update.'
branch: 'chore/pre-commit-autoupdate'