We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bef1a99 commit fefa7f3Copy full SHA for fefa7f3
src/handlers/prioritize.rs
@@ -111,13 +111,11 @@ async fn handle_input(
111
}
112
None
113
114
- Prioritize::Start => {
115
- Some(format!(
116
- "@*WG-prioritization* issue [#{}]({}) has been requested for prioritization.",
117
- issue.number,
118
- event.html_url().unwrap()
119
- ))
120
- }
+ Prioritize::Start => Some(format!(
+ "@*WG-prioritization* issue [#{}]({}) has been requested for prioritization.",
+ issue.number,
+ event.html_url().unwrap()
+ )),
121
Prioritize::End => {
122
// Shouldn't be necessary in practice as we only end on label
123
// removal, but if we add support in the future let's be sure to do
0 commit comments