mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-13 05:06:58 +03:00
2a1ea27ba1
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
42 lines
1.2 KiB
YAML
42 lines
1.2 KiB
YAML
# 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 * * *"
|
|
workflow_dispatch: # to trigger manually
|
|
|
|
jobs:
|
|
auto-update:
|
|
# Disables this workflow from running in a repository that is not part of the indicated organization/user
|
|
if: github.repository_owner == 'cookiecutter'
|
|
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v2
|
|
with:
|
|
python-version: "3.9"
|
|
|
|
- name: Install pre-commit
|
|
run: pip install pre-commit
|
|
|
|
- name: Autoupdate template
|
|
run: pre-commit autoupdate
|
|
|
|
- name: Autoupdate generated projects
|
|
working-directory: "{{cookiecutter.project_slug}}"
|
|
run: pre-commit autoupdate
|
|
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v3.12.0
|
|
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
|