Replies: 1 comment 3 replies
-
Hi 👋 ! It may or may not be supported but I'm not sure to be honest. Could you try to run the following queries in the GitHub GraphQL Explorer: Stats from 1st january (should have 0 PR reviews since it's roughly what is used currently by this app){
viewer {
contributionsCollection(from: "2023-01-01T05:00:00.000Z") {
totalPullRequestContributions
totalPullRequestReviewContributions
totalIssueContributions
totalCommitContributions
}
}
} Stats from 1st january with organization filterFetch organization id{
organization(login: "organization-login") {
id
}
} Stats from 1st january with organization filter{
viewer {
contributionsCollection(from: "2023-01-01T05:00:00.000Z", organizationID: "organization-id-from-previous-request") {
totalPullRequestContributions
totalPullRequestReviewContributions
totalIssueContributions
totalCommitContributions
}
}
} If the later returns non-zero values for several of your organization and it seems correct, maybe it's just missing a loop on organization to fetch data on them, so we could patch the base plugin to track these missing data |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello!
I apologize if this was right in front of me and I missed it but I was wondering if I'm doing something wrong here. I'd like to include private organization metrics in my "Activity" section here:
However, it doesn't seem to be showing. It does appear to have my commits but not my PRs or reviews. I ensured I had the following settings in my yml, just to be sure:
And my token does have the read:org scope:
Am I doing something wrong here or is including those metrics not possible?
Thanks again!
Beta Was this translation helpful? Give feedback.
All reactions