Skip to content

Commit

Permalink
chore: Tweak the weekly-report command to include PR numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
poljar committed Feb 28, 2025
1 parent 8cd7085 commit 95b53d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xtask/src/release.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ fn weekly_report() -> Result<()> {
let _env_pager = sh.push_env("GH_PAGER", "");

let header = format!("# This Week in the Matrix Rust SDK ({today})\n\n");
let template = "{{range .}}- {{.title}} by @{{.author.login}}{{\"\\n\\n\"}}{{end}}";
let template = "{{range .}}- {{.title}} ([#{{.number}}](https://github.com/matrix-org/matrix-rust-sdk/pull/{{.number}})){{\"\\n\\n\"}}{{end}}";
let template = format!("{header}{template}");

cmd!(
Expand Down

0 comments on commit 95b53d7

Please sign in to comment.