From 7f0dd143f7f0299ed0de0a778b99ae2002380a48 Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Thu, 3 Nov 2022 15:54:12 +0300 Subject: [PATCH] Delete pre-commit-autoupdate.yml --- .github/workflows/pre-commit-autoupdate.yml | 45 --------------------- 1 file changed, 45 deletions(-) delete mode 100644 .github/workflows/pre-commit-autoupdate.yml diff --git a/.github/workflows/pre-commit-autoupdate.yml b/.github/workflows/pre-commit-autoupdate.yml deleted file mode 100644 index 55660cb..0000000 --- a/.github/workflows/pre-commit-autoupdate.yml +++ /dev/null @@ -1,45 +0,0 @@ -# Run pre-commit autoupdate every day at midnight -# and create a pull request if any changes -# Copied from -# https://github.com/cookiecutter/cookiecutter-django - -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 == 'typeddjango' - 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@v4 - with: - python-version: "3.9" - - - name: Install pre-commit - run: pip install pre-commit - - - name: Autoupdate deps - 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: dependencies