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.
2 parents 1541b06 + a1d3a52 commit 8c04e72Copy full SHA for 8c04e72
site/src/request_handlers/github.rs
@@ -158,6 +158,11 @@ async fn handle_rust_timer(
158
Err(error) => errors.push_str(&format!("Cannot parse build command: {error}\n")),
159
}
160
161
+
162
+ if valid_build_cmds.is_empty() {
163
+ errors.push_str("@rust-timer command cannot be empty\n");
164
+ }
165
166
if !errors.is_empty() {
167
main_client.post_comment(issue.number, errors).await;
168
return Ok(github::Response);
0 commit comments