Skip to content

Commit 0499da0

Browse files
committed
fixup! Improve CI health report and list recently failing jobs
1 parent c9a27cf commit 0499da0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sql/ci-cd/failing-jobs.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ SELECT
5252
, ascii_bar(1e0 * num_failed_runs / (SELECT count(*) FROM recent_master_runs)) AS "Failure ratio chart"
5353
, round(100e0 * num_failed_runs / (SELECT count(*) FROM recent_master_runs), 1) AS "Failure percent"
5454
, num_failed_runs AS "Number of failed runs"
55-
, errors AS "Error messages"
55+
-- whole report must be under 3k characters to fit into a Slack notification
56+
--, errors AS "Error messages"
5657
, failed_runs AS "Run URLs"
5758
FROM failed_jobs
5859
ORDER BY num_failed_runs DESC, name

0 commit comments

Comments
 (0)