Update pre-commit hooks #414
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: Update pre-commit hooks | |
on: | |
workflow_dispatch: | |
schedule: | |
# Run at 8:00 AM every day | |
- cron: "0 8 * * *" | |
jobs: | |
update-pre-commit-hooks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 | |
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 | |
with: | |
python-version: "3.12" | |
- name: Install prerequisites | |
run: | | |
pip install pre-commit tox | |
- name: Update pre-commit hooks | |
run: | | |
pre-commit autoupdate | |
- name: Check for pre-commit config file changes | |
id: git_diff | |
run: | | |
echo "GIT_DIFF=$(git diff --exit-code 1> /dev/null; echo $?)" >> $GITHUB_OUTPUT | |
- name: Run tests | |
if: steps.git_diff.outputs.GIT_DIFF == 1 | |
# We want to make sure that the new updates do not affect the code | |
run: | | |
make tests | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: "build: Update pre-commit hooks" | |
branch: "rstuf-bot/update-pre-commit-hooks" | |
delete-branch: true | |
title: "build: Update pre-commit hooks" | |
body: > | |
The following PR updates the pre-commit hooks (`.pre-commit-config.yaml` file) using `pre-commit autoupdate`. | |
labels: report, automated pr, pre-commit |