Skip to content

Commit df9be30

Browse files
authored
Merge pull request #3822 from Flow-Launcher/fix_milestone_string_workflow
Fix release PR milestone filter output print
2 parents a6a28ce + 3b1fe21 commit df9be30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/update_release_pr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def get_prs(
8989
count += 1
9090

9191
print(
92-
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"}"
92+
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"}"
9393
)
9494

9595
return pr_list

0 commit comments

Comments
 (0)