From c83ce2f4563ca57907a3b5b2236b900df0f0507c Mon Sep 17 00:00:00 2001 From: d33bs Date: Wed, 13 Nov 2024 05:32:04 -0700 Subject: [PATCH] Add pre-commit CI lite for automated fixes --- .github/workflows/pre-commit-checks.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/pre-commit-checks.yml b/.github/workflows/pre-commit-checks.yml index 5d621783..e9c2a570 100644 --- a/.github/workflows/pre-commit-checks.yml +++ b/.github/workflows/pre-commit-checks.yml @@ -16,4 +16,8 @@ jobs: - uses: actions/setup-python@v5 with: python-version: "3.10" + # run pre-commit - uses: pre-commit/action@v3.0.1 + # run pre-commit ci lite for automated fixes + - uses: pre-commit-ci/lite-action@v1.1.0 + if: ${{ !cancelled() }}