diff --git a/.github/workflows/BRANCH_NAME_CHECK_ON_PR.yml b/.github/workflows/BRANCH_NAME_CHECK_ON_PR.yml index a9d2e8a138..b0564141c8 100644 --- a/.github/workflows/BRANCH_NAME_CHECK_ON_PR.yml +++ b/.github/workflows/BRANCH_NAME_CHECK_ON_PR.yml @@ -14,6 +14,7 @@ jobs: - name: Check if branch name follows conventional commit regex run: | BRANCH_REGEX='^(feat|fix|docs|style|refactor|perf|test|chore)\(?.+\)?: .+$' + echo ${{steps.extract_branch.outputs.branch}} if [[ "${{ steps.extract_branch.outputs.branch }}" =~ $BRANCH_REGEX ]]; then echo "Branch name follows the conventional commit format." else