Merge pull request #3822 from Flow-Launcher/fix_milestone_string_workflow

Fix release PR milestone filter output print
This commit is contained in:
Jeremy Wu 2025-07-14 00:10:27 +10:00 committed by GitHub
commit df9be30394
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -89,7 +89,7 @@ def get_prs(
count += 1
print(
f"Found {count} PRs with {label if label else 'no filter on'} label, state as {state}, and milestone {pr["milestone"] if pr["milestone"] is not None else "None"}"
f"Found {count} PRs with {label if label else 'no filter on'} label, state as {state}, and milestone {milestone_title if milestone_title else "any"}"
)
return pr_list