ci: Tag area/ui if the PR title has ui in it

This commit is contained in:
TwiN
2025-08-14 16:48:41 -04:00
parent 6c28de6950
commit 609a634df3

View File

@@ -32,6 +32,9 @@ jobs:
if [[ $TITLE == *"alerting"* || $TITLE == *"provider"* || $TITLE == *"alert"* ]]; then
gh issue edit "$NUMBER" --add-label "area/alerting"
fi
if [[ $TITLE == *"(ui)"* $TITLE == *"ui:"* || ]]; then
gh issue edit "$NUMBER" --add-label "area/ui"
fi
if [[ $TITLE == *"storage"* || $TITLE == *"postgres"* || $TITLE == *"sqlite"* ]]; then
gh issue edit "$NUMBER" --add-label "area/storage"
fi