Include pull requests in release progress tracking (#6468)

Add PullRequest inline fragment to the project items GraphQL query
so PRs in the GitHub Project are counted alongside issues when
calculating release blocker/must-do progress.
This commit is contained in:
Scot Breitenfeld
2026-06-19 12:11:40 -05:00
committed by GitHub
parent daa1daf640
commit 5cce874897
+4
View File
@@ -85,6 +85,10 @@ class GitHubProjectTracker:
id, title, url
milestone { title }
}
... on PullRequest {
id, title, url
milestone { title }
}
}
}
}