Skip to content

Pre-commit auto-update #930

Pre-commit auto-update

Pre-commit auto-update #930

Workflow file for this run

name: Pre-commit auto-update
on:
schedule:
- cron: "0 0 * * *"
jobs:
auto-update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- 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/[email protected]
with:
token: ${{ secrets.CPR_GITHUB_TOKEN }}
base: main
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 configs to latest version
labels: dependencies