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: "0 0 * * *"
|
|
|
|
workflow_dispatch: # to trigger manually
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
auto-update:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2020-10-01 09:24:35 +03:00
|
|
|
- uses: actions/setup-python@v2.1.3
|
2020-08-12 14:52:58 +03:00
|
|
|
with:
|
|
|
|
python-version: 3.8
|
|
|
|
|
|
|
|
- name: Install pre-commit
|
|
|
|
run: pip install pre-commit
|
2020-08-12 14:55:37 +03:00
|
|
|
|
2020-08-12 14:52:58 +03:00
|
|
|
- name: Run pre-commit autoupdate
|
2020-08-12 14:55:37 +03:00
|
|
|
working-directory: "{{cookiecutter.project_slug}}"
|
2020-08-12 14:52:58 +03:00
|
|
|
run: pre-commit autoupdate
|
|
|
|
|
|
|
|
- name: Create Pull Request
|
|
|
|
uses: peter-evans/create-pull-request@v2
|
|
|
|
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
|