mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-14 05:36:58 +03:00
e0c04fa0d3
* chore: Set permissions for GitHub actions Restrict the GitHub token permissions only to the required ones; this way, even if the attackers will succeed in compromising your workflow, they won’t be able to do much. - Included permissions for the action. https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs [Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests/) Signed-off-by: naveen <172697+naveensrinivasan@users.noreply.github.com> * Leave comment close to code Co-authored-by: Bruno Alla <browniebroke@users.noreply.github.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@v3
|
|
- uses: actions/setup-python@v3
|
|
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@v4
|
|
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
|