Skip to content
Merged
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 @@ -25,6 +25,8 @@ jobs:
echo "PR title is a Conventional Commit with a Linear issue ID in scope."
elif echo "$PR_TITLE" | grep -qPi '^NO-ISSUE\b'; then
echo "::notice::PR explicitly opted out of issue association."
elif echo "$PR_TITLE" | grep -qP '^[a-z]+\(NO-ISSUE\)!?:'; then
echo "::notice::PR explicitly opted out of issue association (NO-ISSUE in conventional commit scope)."
elif echo "$PR_TITLE" | grep -qPi '^[a-z]+(\([^)]*\))?!?:\s*NO-ISSUE\b'; then
echo "::notice::PR explicitly opted out of issue association (conventional commit style)."
else
Expand Down
Loading