mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Merge pull request #3822 from Flow-Launcher/fix_milestone_string_workflow
Fix release PR milestone filter output print
This commit is contained in:
commit
df9be30394
1 changed files with 1 additions and 1 deletions
2
.github/update_release_pr.py
vendored
2
.github/update_release_pr.py
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue