File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
tools/agenda-generator/src Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -92,6 +92,13 @@ impl Generator {
92
92
. repo ( "rust-lang/rfcs" )
93
93
. write ( & mut self ) ?;
94
94
95
+ IssueQuery :: new ( "Prioritization Requested" )
96
+ . labels ( & [ "T-libs" , "I-prioritize" ] )
97
+ . labels ( & [ "T-libs-api" , "I-prioritize" ] )
98
+ . repo ( "rust-lang/rust" )
99
+ . repo ( "rust-lang/rfcs" )
100
+ . write ( & mut self ) ?;
101
+
95
102
IssueQuery :: new ( "Nominated" )
96
103
. labels ( & [ "T-libs" , "I-nominated" ] )
97
104
. repo ( "rust-lang/rust" )
@@ -125,12 +132,6 @@ impl Generator {
125
132
. repo ( "rust-lang/rfcs" )
126
133
. write ( & mut self ) ?;
127
134
128
- IssueQuery :: new ( "Prioritization Requested" )
129
- . labels ( & [ "T-libs" , "I-prioritize" ] )
130
- . labels ( & [ "T-libs-api" , "I-prioritize" ] )
131
- . repo ( "rust-lang/rust" )
132
- . repo ( "rust-lang/rfcs" )
133
- . write ( & mut self ) ?;
134
135
135
136
writeln ! ( & mut self . agenda,
136
137
"## Actions
You can’t perform that action at this time.
0 commit comments