mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-15 06:12:50 -07:00
62670cc822
This PR implements several bot-related improvements and verifies workflow permissions as requested by maintainers. ### Changes: 1. **Fix Metric Cap (BT-01):** Refactored `open_issues.ts` and `open_prs.ts` to use GitHub's GraphQL API. This bypasses the 1000-item limit of the standard list command, ensuring accurate metrics for repositories with large numbers of open items. 2. **Initialize Pulse Reflexes (BT-02):** Created the `tools/gemini-cli-bot/reflexes/scripts` directory and added a README. This prepares the infrastructure for high-frequency reflexive automation. 3. **Workflow Verification (BT-05):** This PR and the accompanying comment on #24353 serve as confirmation that the GitHub App integration and workflow "write" permissions are correctly configured. ### Impact: - Accurate tracking of repository backlog. - Foundation for faster automated triage. - Confirmed operational status of the bot.
74 lines
2.0 KiB
TypeScript
74 lines
2.0 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2026 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* @license
|
|
*/
|
|
|
|
import { GITHUB_OWNER, GITHUB_REPO, type MetricOutput } from '../types.js';
|
|
import { execSync } from 'node:child_process';
|
|
|
|
try {
|
|
const query = `
|
|
query($owner: String!, $repo: String!) {
|
|
repository(owner: $owner, name: $repo) {
|
|
pullRequests(last: 100) {
|
|
nodes {
|
|
reviews(first: 50) {
|
|
nodes {
|
|
author { login }
|
|
authorAssociation
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
const output = execSync(
|
|
`gh api graphql -F owner=${GITHUB_OWNER} -F repo=${GITHUB_REPO} -f query='${query}'`,
|
|
{ encoding: 'utf-8' },
|
|
);
|
|
const data = JSON.parse(output).data.repository;
|
|
|
|
const reviewCounts: Record<string, number> = {};
|
|
|
|
for (const pr of data.pullRequests.nodes) {
|
|
if (!pr.reviews?.nodes) continue;
|
|
// We only count one review per author per PR to avoid counting multiple review comments as multiple reviews
|
|
const reviewersOnPR = new Set<string>();
|
|
|
|
for (const review of pr.reviews.nodes) {
|
|
if (
|
|
['MEMBER', 'OWNER', 'COLLABORATOR'].includes(review.authorAssociation) &&
|
|
review.author?.login
|
|
) {
|
|
const login = review.author.login.toLowerCase();
|
|
if (login.endsWith('[bot]') || login.includes('bot')) {
|
|
continue; // Ignore bots
|
|
}
|
|
reviewersOnPR.add(review.author.login);
|
|
}
|
|
}
|
|
|
|
for (const reviewer of reviewersOnPR) {
|
|
reviewCounts[reviewer] = (reviewCounts[reviewer] || 0) + 1;
|
|
}
|
|
}
|
|
|
|
const counts = Object.values(reviewCounts);
|
|
|
|
let variance = 0;
|
|
if (counts.length > 0) {
|
|
const mean = counts.reduce((a, b) => a + b, 0) / counts.length;
|
|
variance =
|
|
counts.reduce((a, b) => a + Math.pow(b - mean, 2), 0) / counts.length;
|
|
}
|
|
|
|
console.log(`review_distribution_variance,${Math.round(variance * 100) / 100}`);
|
|
} catch (err) {
|
|
process.stderr.write(err instanceof Error ? err.message : String(err));
|
|
process.exit(1);
|
|
}
|