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
6 changes: 5 additions & 1 deletion src/lasso/issues/issues/create_release_themes.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,11 @@ def create_release_theme(row, build_number, dry_run=False):
checklist = row.get("Checklist", "")
product = row.get("GitHub Project Product", "")

# Build label
# If description is empty or NaN, use the title as the description
if pd.isna(description) or not str(description).strip():
description = base_title

# Build label and full title with build prefix
build_label = f"B{build_number}"

# Replace $BUILD placeholder if present, otherwise use title as-is
Expand Down