Detect outdated pre-commit hooks #80
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
# This file is part of the sandwine project. | |
# | |
# Copyright (c) 2023 Sebastian Pipping <[email protected]> | |
# | |
# sandwine is free software: you can redistribute it and/or modify it under | |
# the terms of the GNU General Public License as published by the Free | |
# Software Foundation, either version 3 of the License, or (at your option) | |
# any later version. | |
# | |
# sandwine is distributed in the hope that it will be useful, but WITHOUT | |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | |
# more details. | |
# | |
# You should have received a copy of the GNU General Public License along | |
# with sandwine. If not, see <https://www.gnu.org/licenses/>. | |
name: Detect outdated pre-commit hooks | |
on: | |
schedule: | |
- cron: '0 16 * * 5' # Every Friday 4pm | |
workflow_dispatch: | |
# NOTE: This will drop all permissions from GITHUB_TOKEN except metadata read, | |
# and then (re)add the ones listed below: | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
pre_commit_detect_outdated: | |
name: Detect outdated pre-commit hooks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0 | |
with: | |
python-version: 3.12 | |
- name: Install pre-commit | |
run: |- | |
pip install \ | |
--disable-pip-version-check \ | |
--no-warn-script-location \ | |
--user \ | |
pre-commit | |
echo "PATH=${HOME}/.local/bin:${PATH}" >> "${GITHUB_ENV}" | |
- name: Check for outdated hooks | |
run: |- | |
pre-commit autoupdate | |
git diff -- .pre-commit-config.yaml | |
- name: Create pull request from changes (if any) | |
id: create-pull-request | |
uses: peter-evans/create-pull-request@5b4a9f6a9e2af26e5f02351490b90d01eb8ec1e5 # v5.0.0 | |
with: | |
author: 'pre-commit <[email protected]>' | |
base: main | |
body: |- | |
For your consideration. | |
:warning: Please **CLOSE AND RE-OPEN** this pull request so that [further workflow runs get triggered](https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#triggering-further-workflow-runs) for this pull request. | |
branch: precommit-autoupdate | |
commit-message: "pre-commit: Autoupdate" | |
delete-branch: true | |
draft: true | |
labels: enhancement | |
title: "pre-commit: Autoupdate" | |
- name: Log pull request URL | |
if: "${{ steps.create-pull-request.outputs.pull-request-url }}" | |
run: | | |
echo "Pull request URL is: ${{ steps.create-pull-request.outputs.pull-request-url }}" |