Skip to content

Commit bc1846f

Browse files
authored
[EZ] Add meta-pytorch org support (#6959)
Update query to support meta-pytorch org
1 parent 00da186 commit bc1846f

File tree

1 file changed

+3
-1
lines changed
  • torchci/clickhouse_queries/queued_jobs_aggregate

1 file changed

+3
-1
lines changed

torchci/clickhouse_queries/queued_jobs_aggregate/query.sql

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ queued_jobs AS (
4949
WHERE
5050
job.id IN (SELECT id FROM possible_queued_jobs)
5151
AND workflow.id IN (SELECT run_id FROM possible_queued_jobs)
52-
AND workflow.repository.owner.login IN ('pytorch', 'pytorch-labs')
52+
AND workflow.repository.owner.login IN (
53+
'pytorch', 'pytorch-labs', 'meta-pytorch'
54+
)
5355
AND job.status = 'queued'
5456
/* These two conditions are workarounds for GitHub's broken API. Sometimes */
5557
/* jobs get stuck in a permanently "queued" state but definitely ran. We can */

0 commit comments

Comments
 (0)