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