Skip to content

Commit

Permalink
Merge pull request #2 from jni/unmerged
Browse files Browse the repository at this point in the history
Fix typo: "Closed PRs (merged)" should be "unmerged"
  • Loading branch information
Czaki authored Nov 11, 2024
2 parents 4af1592 + 1de8a7c commit 18bb594
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/napari_dashboard/get_weekly_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def generate_weekly_summary(fetch_db: bool) -> list[str]:
res.append("\n## Merged Pull Requests\n")
res.extend(f" - {text}" for text in merged_pr)
if closed_pr := get_last_week_closed_pr_md(session):
res.append("\n## Closed Pull Requests (merged)\n")
res.append("\n## Closed Pull Requests (unmerged)\n")
res.extend(f" - {text}" for text in closed_pr)
if new_issue := get_last_week_new_issues_md(session):
res.append("\n## New Issues\n")
Expand Down

0 comments on commit 18bb594

Please sign in to comment.