Only send unit eval failures to Slack for cron job (#42479)

Release Notes:

- N/A
This commit is contained in:
Richard Feldman
2025-11-11 15:19:34 -05:00
committed by GitHub
parent e01e0b83c4
commit 0d56ed7d91
3 changed files with 0 additions and 34 deletions

View File

@@ -118,21 +118,6 @@ fn cron_unit_evals() -> NamedJob {
}
fn unit_evals(commit: Option<&Input>) -> Job {
fn send_failure_to_slack() -> Step<Use> {
named::uses(
"slackapi",
"slack-github-action",
"b0fa283ad8fea605de13dc3f449259339835fc52",
)
.if_condition(Expression::new("${{ failure() }}"))
.add_with(("method", "chat.postMessage"))
.add_with(("token", vars::SLACK_APP_ZED_UNIT_EVALS_BOT_TOKEN))
.add_with(("payload", indoc::indoc!{r#"
channel: C04UDRNNJFQ
text: "Unit Evals Failed: https://github.com/zed-industries/zed/actions/runs/${{ github.run_id }}"
"#}))
}
let script_step = add_api_keys(steps::script("./script/run-unit-evals"));
Job::default()
@@ -147,6 +132,5 @@ fn unit_evals(commit: Option<&Input>) -> Job {
Some(commit) => script_step.add_env(("UNIT_EVAL_COMMIT", commit)),
None => script_step,
})
.add_step(send_failure_to_slack())
.add_step(steps::cleanup_cargo_config(Platform::Linux))
}