File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
torchci/clickhouse_queries/hud_query Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,12 @@ WITH job AS (
24
24
WHERE
25
25
job .name != ' ciflow_should_run'
26
26
AND job .name != ' generate-test-matrix'
27
- and job .workflow_name != ' Upload test stats' -- Should be filtered out by the workflow_event filters, but sometimes workflow_event is empty
27
+ AND job .workflow_name not in (
28
+ ' Upload test stats' ,
29
+ ' Validate and merge PR' ,
30
+ ' Upload torch dynamo performance stats' ,
31
+ ' Revert merged PR'
32
+ ) -- Should be filtered out by the workflow_event filters, but workflow_event takes some time to populate
28
33
AND job .workflow_event != ' workflow_run' -- Filter out workflow_run-triggered jobs, which have nothing to do with the SHA
29
34
AND job .workflow_event != ' repository_dispatch' -- Filter out repository_dispatch-triggered jobs, which have nothing to do with the SHA
30
35
AND job .id in (select id from materialized_views .workflow_job_by_head_sha where head_sha in {shas: Array(String)})
You can’t perform that action at this time.
0 commit comments