cookiecutter-django/.github/workflows/pre-commit-autoupdate.yml

48 lines
1.4 KiB
YAML
Raw Normal View History

2020-08-12 14:52:58 +03:00
# Run pre-commit autoupdate every day at midnight
# and create a pull request if any changes
name: Pre-commit auto-update
on:
schedule:
- cron: "15 2 * * *"
2020-08-12 14:52:58 +03:00
workflow_dispatch: # to trigger manually
permissions:
contents: read
2020-08-12 14:52:58 +03:00
jobs:
auto-update:
2021-12-06 14:50:50 +03:00
# Disables this workflow from running in a repository that is not part of the indicated organization/user
if: github.repository_owner == 'cookiecutter'
permissions:
contents: write # for peter-evans/create-pull-request to create branch
pull-requests: write # for peter-evans/create-pull-request to create a PR
2021-12-06 14:50:50 +03:00
2020-08-12 14:52:58 +03:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
2021-11-20 01:06:56 +03:00
with:
python-version: "3.9"
2020-08-12 14:52:58 +03:00
2021-11-20 01:06:56 +03:00
- name: Install pre-commit
run: pip install pre-commit
2020-08-12 14:55:37 +03:00
- name: Autoupdate template
run: pre-commit autoupdate
- name: Autoupdate generated projects
2021-11-20 01:06:56 +03:00
working-directory: "{{cookiecutter.project_slug}}"
run: pre-commit autoupdate
2020-08-12 14:52:58 +03:00
2021-11-20 01:06:56 +03:00
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4
2021-11-20 01:06:56 +03:00
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: update/pre-commit-autoupdate
title: Auto-update pre-commit hooks
commit-message: Auto-update pre-commit hooks
body: Update versions of tools in pre-commit configs to latest version
labels: update