Skip to content

Commit aeb9120

Browse files
committed
ci: prevent grep failure in ticket extraction
1 parent 607b557 commit aeb9120

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/linear-deployed.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
EOF
3131
)
3232
33-
TICKETS=$(echo "$RELEASE_BODY" | grep -oE "${TEAM_KEY}-[0-9]+" | sort -u)
33+
TICKETS=$(echo "$RELEASE_BODY" | grep -oE "${TEAM_KEY}-[0-9]+" | sort -u || true)
3434
3535
if [ -z "$TICKETS" ]; then
3636
echo "No ${TEAM_KEY} tickets found in release notes"

0 commit comments

Comments
 (0)