Skip to content

Commit 363bed8

Browse files
committed
Show list of labels for each query.
1 parent bee7f63 commit 363bed8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tools/agenda-generator/src/generator.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -336,10 +336,11 @@ impl IssueQuery {
336336
let url_labels = labels.iter().map(|label| format!("label:{}", label)).join("+");
337337
writeln!(
338338
generator.agenda,
339-
"- [{} `{repo}` items](https://github.com/{repo}/issues?q=is:open+{url_labels})",
339+
"- [{} `{repo}` `{labels}` items](https://github.com/{repo}/issues?q=is:open+{url_labels})",
340340
issues.len(),
341341
repo = repo,
342-
url_labels = url_labels
342+
labels = labels.join("` `"),
343+
url_labels = url_labels,
343344
)?;
344345
generator.write_issues(&issues)?;
345346

0 commit comments

Comments
 (0)