@@ -108,6 +108,17 @@ impl Generator {
108
108
. repo ( "rust-lang/rfcs" )
109
109
. write ( & mut self ) ?;
110
110
111
+ GithubQuery :: new ( "Backports" )
112
+ . labels ( & [ "T-libs" , "stable-nominated" ] )
113
+ . labels ( & [ "T-libs-api" , "stable-nominated" ] )
114
+ . labels ( & [ "T-libs" , "beta-nominated" ] )
115
+ . labels ( & [ "T-libs-api" , "beta-nominated" ] )
116
+ . exclude_labels ( & [ "beta-accepted" ] )
117
+ . state ( State :: Any )
118
+ . repo ( "rust-lang/rust" )
119
+ . repo ( "rust-lang/rfcs" )
120
+ . write ( & mut self ) ?;
121
+
111
122
GithubQuery :: new ( "Prioritization Requested" )
112
123
. labels ( & [ "T-libs" , "I-prioritize" ] )
113
124
. labels ( & [ "T-libs-api" , "I-prioritize" ] )
@@ -122,17 +133,6 @@ impl Generator {
122
133
. repo ( "rust-lang/libs-team" )
123
134
. write ( & mut self ) ?;
124
135
125
- GithubQuery :: new ( "Backports" )
126
- . labels ( & [ "T-libs" , "stable-nominated" ] )
127
- . labels ( & [ "T-libs-api" , "stable-nominated" ] )
128
- . labels ( & [ "T-libs" , "beta-nominated" ] )
129
- . labels ( & [ "T-libs-api" , "beta-nominated" ] )
130
- . exclude_labels ( & [ "beta-accepted" ] )
131
- . state ( State :: Any )
132
- . repo ( "rust-lang/rust" )
133
- . repo ( "rust-lang/rfcs" )
134
- . write ( & mut self ) ?;
135
-
136
136
GithubQuery :: new ( "Regressions" )
137
137
. labels ( & [ "T-libs" , "regression-untriaged" ] )
138
138
. labels ( & [ "T-libs-api" , "regression-untriaged" ] )
0 commit comments