Skip to content

pre-commit autoupdate #2

pre-commit autoupdate

pre-commit autoupdate #2

name: pre-commit autoupdate
on:
workflow_dispatch:
schedule:
- cron: "0 6 4 * *"
defaults:
run:
shell: bash -el {0}
jobs:
check_update:
name: Check if newer version exists
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v4
# We need to checkout with SSH here to have actions run on the PR.
with:
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Set up Conda env
uses: mamba-org/setup-micromamba@db1df3ba9e07ea86f759e98b575c002747e9e757
with:
environment-name: pre-commit
create-args: >-
-c
conda-forge
pre-commit
mamba
- name: Update pre-commit hooks and run
id: versions
env:
PRE_COMMIT_USE_MAMBA: 1
run: |
pre-commit autoupdate
pre-commit run -a || true
- uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38
with:
commit-message: "Auto-update pre-commit hooks"
title: "Auto-update pre-commit hooks"
body: |
New versions of the used pre-commit hooks were detected.
This PR updates them to the latest and already ran `pre-commit run -a` for you to fix any changes in formatting.
branch: pre-commit-autoupdate
delete-branch: true