From b2edf11ca77462ea4903a65bb0bc9c3be843d888 Mon Sep 17 00:00:00 2001 From: NTGNguyen <23521049@gm.uit.edu.vn> Date: Mon, 9 Sep 2024 13:23:08 +0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Refactor=20pre-commit=20workflow?= =?UTF-8?q?=20to=20include=20running=20pre-commit=20checks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pre-commit.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 5bc9255..cdbe597 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -12,6 +12,7 @@ jobs: permissions: contents: write pull-requests: write + steps: - name: Checkout repository uses: actions/checkout@v2 @@ -27,6 +28,7 @@ jobs: pip install pre-commit - name: Run pre-commit + id: run_pre_commit run: pre-commit run --all-files - name: Create Pull Request