Skip to content

Commit 4f76fd9

Browse files
committed
Exclude accepted ACPs from agenda
1 parent 93b78ee commit 4f76fd9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tools/agenda-generator/src/generator.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ impl Generator {
8080

8181
let new_proposals = GithubQuery::new("new change proposal")
8282
.labels(&["api-change-proposal"])
83+
.exclude_labels(&["ACP-accepted"])
8384
.repo("rust-lang/libs-team")
8485
.sort(Sort::Newest)
8586
.take(10)
@@ -88,6 +89,7 @@ impl Generator {
8889

8990
GithubQuery::new("stalled change proposal")
9091
.labels(&["api-change-proposal"])
92+
.exclude_labels(&["ACP-accepted"])
9193
.repo("rust-lang/libs-team")
9294
.sort(Sort::LeastRecentlyUpdated)
9395
.take(10)

0 commit comments

Comments
 (0)