-
-
Notifications
You must be signed in to change notification settings - Fork 21
49 lines (41 loc) · 1.21 KB
/
pre-commit-autoupdate.yml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
name: "Pre-commit autoupdate"
on:
schedule:
- cron: '0 6 1 * *'
workflow_dispatch:
jobs:
autoupdate:
name: autoupdate
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
ref: develop
- name: Set up Python 3.9
uses: actions/[email protected]
with:
python-version: 3.9
- name: Install system deps
shell: bash
run: |
pip install poetry
poetry config virtualenvs.in-project true
poetry install --no-root --only dev --only linters --sync
- name: Run autoupdate
run: poetry run pre-commit autoupdate
continue-on-error: true
- name: Run pre-commit
run: poetry run pre-commit run --all-files
- uses: peter-evans/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: chore-update-pre-commit-hooks
title: Update pre-commit hooks
commit-message: "Update pre-commit hooks"
body: |
# Update pre-commit hooks
- Update pre-commit hooks to the latest version.
delete-branch: true
labels: |
dependencies
python