Skip to content

weekly

weekly #121

Workflow file for this run

name: weekly
on:
schedule:
- cron: 0 0 * * 1
defaults:
run:
shell: bash -l {0}
jobs:
autoupdate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit autoupdate
run: |
pre-commit autoupdate -c .pre-commit-config.yaml
pre-commit autoupdate -c "{{cookiecutter.project_name}}/.pre-commit-config.yaml"
pre-commit autoupdate -c "{{cookiecutter.project_name}}/.pre-commit-config-cruft.yaml"
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
title: pre-commit autoupdate