Skip to content

[EZ] Add meta-pytorch org support #6959

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 12, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion torchci/clickhouse_queries/queued_jobs_aggregate/query.sql
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ queued_jobs AS (
WHERE
job.id IN (SELECT id FROM possible_queued_jobs)
AND workflow.id IN (SELECT run_id FROM possible_queued_jobs)
AND workflow.repository.owner.login IN ('pytorch', 'pytorch-labs')
AND workflow.repository.owner.login IN (
'pytorch', 'pytorch-labs', 'meta-pytorch'
)
AND job.status = 'queued'
/* These two conditions are workarounds for GitHub's broken API. Sometimes */
/* jobs get stuck in a permanently "queued" state but definitely ran. We can */
Expand Down