From ab9b06a079c1302cab800cbb4a2829178c463377 Mon Sep 17 00:00:00 2001 From: Diego Alonso Alvarez Date: Wed, 25 Sep 2024 15:04:53 +0100 Subject: [PATCH] Remove pre-commit action --- .github/workflows/ci_template.yml | 7 ------- .github/workflows/pre-commit_autoupdate.yml | 20 -------------------- 2 files changed, 27 deletions(-) delete mode 100644 .github/workflows/pre-commit_autoupdate.yml diff --git a/.github/workflows/ci_template.yml b/.github/workflows/ci_template.yml index 839c0f0d..f9e87d29 100644 --- a/.github/workflows/ci_template.yml +++ b/.github/workflows/ci_template.yml @@ -13,14 +13,7 @@ on: type: string jobs: - qa: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: pre-commit/action@v3.0.1 - test: - needs: qa runs-on: ${{ matrix.os }} strategy: fail-fast: false diff --git a/.github/workflows/pre-commit_autoupdate.yml b/.github/workflows/pre-commit_autoupdate.yml deleted file mode 100644 index 0688e6c3..00000000 --- a/.github/workflows/pre-commit_autoupdate.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Pre-commit auto-update - -on: - schedule: - - cron: "0 0 * * 1" # midnight every Monday - -jobs: - auto-update: - runs-on: ubuntu-20.04 - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - - uses: browniebroke/pre-commit-autoupdate-action@main - # - uses: peter-evans/create-pull-request@v5 - # with: - # token: ${{ secrets.GITHUB_TOKEN }} - # branch: update/pre-commit-hooks - # title: Update pre-commit hooks - # commit-message: "chore: update pre-commit hooks" - # body: Update versions of pre-commit hooks to latest version.