Skip to content

Commit 1d28594

Browse files
committed
main-chore(refactor): refactor has been put in place at "2026-01-05T13:26:53Z"
1 parent 23f090a commit 1d28594

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/scripts/extract-tickets.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ COMMITS=$(git log --oneline "${BASE_REF}..${HEAD_REF}" 2>/dev/null || echo "")
1515
PR_TITLE="${PR_TITLE:-}"
1616
ALL_TEXT="${COMMITS}"$'\n'"${PR_TITLE}"
1717

18-
# Extract ticket IDs using regex pattern: (ACC|DEV|acc|dev)(-|_)<number>
18+
# Extract ticket IDs using regex pattern: (ACC|DEV|REP|acc|dev|rep)(-|_)<number>
1919
# This will match: ACC-123, DEV-456, acc-789, dev_012, etc.
20-
TICKET_IDS=$(echo "$ALL_TEXT" | grep -oiE '(acc|dev)[-_][0-9]+' | sort -u || true)
20+
TICKET_IDS=$(echo "$ALL_TEXT" | grep -oiE '(acc|dev|rep)[-_][0-9]+' | sort -u || true)
2121

2222
if [ -z "$TICKET_IDS" ]; then
2323
echo "[]"

0 commit comments

Comments
 (0)