diff --git a/.github/workflows/commit-check.yml b/.github/workflows/commit-check.yml deleted file mode 100644 index 85980e7..0000000 --- a/.github/workflows/commit-check.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Check Conventional Commit - -on: - push: - branches: - - master - pull_request: - branches: - - master - -jobs: - check-commit-message: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Check Conventional Commit - run: | - # Define the conventional commit types with emojis - 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) - for type in "${TYPES[@]}"; do - type_emoji=${type} - type=${type_emoji#* } - emoji=${type_emoji% *} - if [[ $COMMIT_MSG == $emoji* ]]; then - echo "Commit message is a conventional commit" - exit 0 - fi - done - - # If we reach here, the commit message is not a conventional commit - echo "Commit message is not a conventional commit" - exit 1 \ No newline at end of file diff --git a/.github/workflows/commit.yml b/.github/workflows/cz.yml similarity index 82% rename from .github/workflows/commit.yml rename to .github/workflows/cz.yml index 5cda42d..8b3f63d 100644 --- a/.github/workflows/commit.yml +++ b/.github/workflows/cz.yml @@ -1,38 +1,38 @@ -name: Check Conventional Commit - -on: - push: - branches: - - master - pull_request: - branches: - - master - -jobs: - check-commit-message: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Check Conventional Commit - run: | - # Define the conventional commit types with emojis - 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) - for type in "${TYPES[@]}"; do - type_emoji=${type} - type=${type_emoji#* } - emoji=${type_emoji% *} - if [[ $COMMIT_MSG == $emoji* ]]; then - echo "Commit message is a conventional commit" - exit 0 - fi - done - - # If we reach here, the commit message is not a conventional commit - echo "Commit message is not a conventional commit" +name: Check Conventional Commit + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + check-commit-message: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Check Conventional Commit + run: | + # Define the conventional commit types with emojis + 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) + for type in "${TYPES[@]}"; do + type_emoji=${type} + type=${type_emoji#* } + emoji=${type_emoji% *} + if [[ $COMMIT_MSG == $emoji* ]]; then + echo "Commit message is a conventional commit" + exit 0 + fi + done + + # If we reach here, the commit message is not a conventional commit + echo "Commit message is not a conventional commit" exit 1 \ No newline at end of file