Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/pr_title_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:
run: |
if [[ "$PR_TITLE" =~ ^(Fix|Update|New|Breaking|Docs|Build|Upgrade|Chore):.*$ ]]; then
echo "PR title is prefixed with change type."
elif [[ $PR_TITLE =~ ^Revert "(Fix|Update|New|Breaking|Docs|Build|Upgrade|Chore):.*$]]; then
echo "PR title is a reverted commit with a change type"
else
echo "PR title is not prefixed with change type."
exit 1
Expand Down
Loading