mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-14 13:47:07 +03:00
b2c2eedb6d
* Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Bump actions/checkout from 3 to 4 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bruno Alla <alla.brunoo@gmail.com>
48 lines
1.4 KiB
YAML
48 lines
1.4 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
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
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'
|
|
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
|
|
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.11"
|
|
|
|
- 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@v5
|
|
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
|