You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FORMATTED_TAGS=$(echo "$TAGS"| sed 's/,/` `/g'| sed 's/^/`/'| sed 's/$/`/')
40
+
# Format the tags with individual backticks, or use default
41
+
if [ -z"$TAGS" ];then
42
+
FORMATTED_TAGS="\`@:all\`"
43
+
else
44
+
FORMATTED_TAGS=$(echo "$TAGS"| sed 's/,/` `/g'| sed 's/^/`/'| sed 's/$/`/')
45
+
fi
42
46
43
47
# Add the "🚨 RED ALERT!" note
44
48
RED_ALERT_NOTE="<!-- \n🚨 RED ALERT! ✋ Rule breaker detected! Tags don’t go here, they belong above ^ in the PR description using this proper format: \`@:tag\`. Changing them here won't do anything (trust us, we’ve tried). Confused? Check out the README hyperlink.\n-->"
0 commit comments