Pre-commit auto-update #1492
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v5 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: make setup | |
- name: Run pre-commit autoupdate | |
run: pre-commit autoupdate | |
- id: generate_token | |
uses: tibdex/github-app-token@v1 | |
with: | |
app_id: ${{ secrets.BOT_APP_ID }} | |
private_key: ${{ secrets.BOT_PRIVATE_KEY }} | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
token: ${{ steps.generate_token.outputs.token }} | |
branch: update/pre-commit-autoupdate | |
title: Auto-update pre-commit hooks | |
commit-message: Auto-update pre-commit hooks | |
labels: dependencies | |
body: | | |
Update versions of tools in pre-commit | |
configs to latest version |