From 15df914eb0dffcb0c39ec0156e4f3c7e5b63c4bd Mon Sep 17 00:00:00 2001 From: Eshan Roy Date: Sat, 30 Nov 2024 10:53:32 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(=5Ffailing):=20fix=20convent?= =?UTF-8?q?ional=20commit=20check?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/{commit.yml => cz.yml} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename .github/workflows/{commit.yml => cz.yml} (84%) diff --git a/.github/workflows/commit.yml b/.github/workflows/cz.yml similarity index 84% rename from .github/workflows/commit.yml rename to .github/workflows/cz.yml index 5cda42dd..fee284c3 100644 --- a/.github/workflows/commit.yml +++ b/.github/workflows/cz.yml @@ -19,7 +19,7 @@ jobs: - name: Check Conventional Commit run: | # Define the conventional commit types with emojis - TYPES=("๐ŸŽ‰ feat" "๐Ÿž fix" "๐Ÿ“š docs" "๐Ÿ’… style" "๐Ÿ”จ refactor" "โšก๏ธ perf" "๐Ÿงช test" "๐Ÿ› ๏ธ build" "๐Ÿค– ci" "๐Ÿงน chore" "โช๏ธ revert") + TYPES=("๐Ÿš€ feat" "๐Ÿ› fix" "๐Ÿ“ docs" "โœจ style" "๐Ÿ›  refactor" "โšก๏ธ perf" "๐Ÿ”ฌ test" "๐Ÿ”ง build" "๐Ÿค– ci" "๐Ÿงน chore" "โช revert") # Extract the commit type and emoji from the commit message COMMIT_MSG=$(git log --format=%B -n 1)