File tree Expand file tree Collapse file tree
clickhouse_queries/master_commit_red_jobs
pages/reliability/[repoOwner]/[repoName] Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -45,10 +45,10 @@ WITH all_jobs AS (
4545 AND j .name NOT LIKE ' %filter%'
4646 AND j .name LIKE ' %/%'
4747 -- Normal mode ({unstableOnly}=0): exclude unstable jobs, keep the requested
48- -- workflows. Unstable mode ({unstableOnly}=1): the dedicated "unstable"
49- -- workflow, plus any job marked unstable (including scheduled/nightly) ;
50- -- workflowNames is unused in that mode . Both modes drop workflow_run-chained
51- -- jobs via the shared line below.
48+ -- workflows. Unstable mode ({unstableOnly}=1): the union of the "unstable"
49+ -- workflow and jobs whose name carries the runtime unstable marker ;
50+ -- workflowNames is unused there . Both modes drop workflow_run-chained jobs
51+ -- via the shared line below.
5252 AND (
5353 (
5454 {unstableOnly: UInt8} = 0
Original file line number Diff line number Diff line change @@ -574,16 +574,14 @@ export default function Page() {
574574
575575 < Grid size = { { xs : 6 } } height = { ROW_HEIGHT } >
576576 { /*
577- Unstable jobs to watch: union of the dedicated "unstable" workflow and
578- any job marked unstable on main (any trigger; workflow_run-chained jobs
579- excluded). Same query as the other panels with unstableOnly=1, which
580- flips its unstable filter; workflowNames is unused in that mode.
577+ Unstable jobs to watch: the union of unstable.yml and jobs whose name
578+ carries the runtime unstable marker.
581579 */ }
582580 < GroupReliabilityPanel
583581 title = { "Unstable jobs" }
584582 subtitle = {
585- UNSTABLE_WORKFLOWS . join ( ", " ) +
586- " workflow + main jobs marked unstable"
583+ UNSTABLE_WORKFLOWS . map ( ( w ) => ` ${ w } .yml` ) . join ( ", " ) +
584+ " + jobs tagged unstable at runtime "
587585 }
588586 queryName = { queryName }
589587 queryParams = { { unstableOnly : 1 , ...queryParams } }
You can’t perform that action at this time.
0 commit comments