Skip to content

Pre-commit auto-update #159

Pre-commit auto-update

Pre-commit auto-update #159

Workflow file for this run

name: Pre-commit auto-update
on:
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
with:
python-version: 3.8
- 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@v6
with:
branch: update/pre-commit-autoupdate
title: Auto-update pre-commit hooks
commit-message: Auto-update pre-commit hooks
body: Update versions of tools in pre-commit config to latest versions.
labels: dependencies