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 c9a27cf commit 0499da0Copy full SHA for 0499da0
sql/ci-cd/failing-jobs.sql
@@ -52,7 +52,8 @@ SELECT
52
, ascii_bar(1e0 * num_failed_runs / (SELECT count(*) FROM recent_master_runs)) AS "Failure ratio chart"
53
, round(100e0 * num_failed_runs / (SELECT count(*) FROM recent_master_runs), 1) AS "Failure percent"
54
, num_failed_runs AS "Number of failed runs"
55
- , errors AS "Error messages"
+ -- whole report must be under 3k characters to fit into a Slack notification
56
+ --, errors AS "Error messages"
57
, failed_runs AS "Run URLs"
58
FROM failed_jobs
59
ORDER BY num_failed_runs DESC, name
0 commit comments