mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-14 22:02:59 -07:00
🤖 Gemini Bot Maintenance Update
This commit is contained in:
@@ -15,7 +15,7 @@ function run() {
|
|||||||
const query = `
|
const query = `
|
||||||
query($owner: String!, $repo: String!) {
|
query($owner: String!, $repo: String!) {
|
||||||
repository(owner: $owner, name: $repo) {
|
repository(owner: $owner, name: $repo) {
|
||||||
issues(first: 100, states: OPEN, orderBy: {field: CREATED_AT, direction: ASC}) {
|
issues(first: 500, states: OPEN, orderBy: {field: CREATED_AT, direction: ASC}) {
|
||||||
nodes {
|
nodes {
|
||||||
createdAt
|
createdAt
|
||||||
}
|
}
|
||||||
@@ -28,7 +28,7 @@ function run() {
|
|||||||
{ encoding: 'utf-8', stdio: ['ignore', 'pipe', 'ignore'] },
|
{ encoding: 'utf-8', stdio: ['ignore', 'pipe', 'ignore'] },
|
||||||
).trim();
|
).trim();
|
||||||
const data = JSON.parse(output).data.repository;
|
const data = JSON.parse(output).data.repository;
|
||||||
const issues = data.issues.nodes;
|
const issues = data.issues.nodes.filter((n: any) => n && n.createdAt);
|
||||||
|
|
||||||
if (issues.length === 0) {
|
if (issues.length === 0) {
|
||||||
process.stdout.write('backlog_age_days,0\n');
|
process.stdout.write('backlog_age_days,0\n');
|
||||||
|
|||||||
@@ -10,18 +10,21 @@ import { GITHUB_OWNER, GITHUB_REPO } from '../types.js';
|
|||||||
import { execSync } from 'node:child_process';
|
import { execSync } from 'node:child_process';
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
const sevenDaysAgo = new Date(Date.now() - 7 * 24 * 60 * 60 * 1000).toISOString().split('T')[0];
|
||||||
const query = `
|
const query = `
|
||||||
query($owner: String!, $repo: String!) {
|
query($prQuery: String!, $issueQuery: String!) {
|
||||||
repository(owner: $owner, name: $repo) {
|
prs: search(query: $prQuery, type: ISSUE, last: 100) {
|
||||||
pullRequests(last: 100, states: MERGED) {
|
nodes {
|
||||||
nodes {
|
... on PullRequest {
|
||||||
authorAssociation
|
authorAssociation
|
||||||
createdAt
|
createdAt
|
||||||
mergedAt
|
mergedAt
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
issues(last: 100, states: CLOSED) {
|
}
|
||||||
nodes {
|
issues: search(query: $issueQuery, type: ISSUE, last: 100) {
|
||||||
|
nodes {
|
||||||
|
... on Issue {
|
||||||
authorAssociation
|
authorAssociation
|
||||||
createdAt
|
createdAt
|
||||||
closedAt
|
closedAt
|
||||||
@@ -30,36 +33,34 @@ try {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
const prSearchQuery = `repo:${GITHUB_OWNER}/${GITHUB_REPO} is:pr is:merged merged:>${sevenDaysAgo}`;
|
||||||
|
const issueSearchQuery = `repo:${GITHUB_OWNER}/${GITHUB_REPO} is:issue is:closed closed:>${sevenDaysAgo}`;
|
||||||
const output = execSync(
|
const output = execSync(
|
||||||
`gh api graphql -F owner=${GITHUB_OWNER} -F repo=${GITHUB_REPO} -f query='${query}'`,
|
`gh api graphql -F prQuery='${prSearchQuery}' -F issueQuery='${issueSearchQuery}' -f query='${query}'`,
|
||||||
{ encoding: 'utf-8' },
|
{ encoding: 'utf-8' },
|
||||||
);
|
);
|
||||||
const data = JSON.parse(output).data.repository;
|
const data = JSON.parse(output).data;
|
||||||
|
|
||||||
const prs = data.pullRequests.nodes.map(
|
const prs = data.prs.nodes
|
||||||
(p: {
|
.filter((p: any) => p && p.mergedAt && p.createdAt)
|
||||||
authorAssociation: string;
|
.map(
|
||||||
mergedAt: string;
|
(p: any) => ({
|
||||||
createdAt: string;
|
association: p.authorAssociation,
|
||||||
}) => ({
|
latencyHours:
|
||||||
association: p.authorAssociation,
|
(new Date(p.mergedAt).getTime() - new Date(p.createdAt).getTime()) /
|
||||||
latencyHours:
|
(1000 * 60 * 60),
|
||||||
(new Date(p.mergedAt).getTime() - new Date(p.createdAt).getTime()) /
|
}),
|
||||||
(1000 * 60 * 60),
|
);
|
||||||
}),
|
const issues = data.issues.nodes
|
||||||
);
|
.filter((i: any) => i && i.closedAt && i.createdAt)
|
||||||
const issues = data.issues.nodes.map(
|
.map(
|
||||||
(i: {
|
(i: any) => ({
|
||||||
authorAssociation: string;
|
association: i.authorAssociation,
|
||||||
closedAt: string;
|
latencyHours:
|
||||||
createdAt: string;
|
(new Date(i.closedAt).getTime() - new Date(i.createdAt).getTime()) /
|
||||||
}) => ({
|
(1000 * 60 * 60),
|
||||||
association: i.authorAssociation,
|
}),
|
||||||
latencyHours:
|
);
|
||||||
(new Date(i.closedAt).getTime() - new Date(i.createdAt).getTime()) /
|
|
||||||
(1000 * 60 * 60),
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
|
|
||||||
const isMaintainer = (assoc: string) =>
|
const isMaintainer = (assoc: string) =>
|
||||||
['MEMBER', 'OWNER', 'COLLABORATOR'].includes(assoc);
|
['MEMBER', 'OWNER', 'COLLABORATOR'].includes(assoc);
|
||||||
|
|||||||
@@ -10,17 +10,20 @@ import { GITHUB_OWNER, GITHUB_REPO } from '../types.js';
|
|||||||
import { execSync } from 'node:child_process';
|
import { execSync } from 'node:child_process';
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
const sevenDaysAgo = new Date(Date.now() - 7 * 24 * 60 * 60 * 1000).toISOString().split('T')[0];
|
||||||
const query = `
|
const query = `
|
||||||
query($owner: String!, $repo: String!) {
|
query($prQuery: String!, $issueQuery: String!) {
|
||||||
repository(owner: $owner, name: $repo) {
|
prs: search(query: $prQuery, type: ISSUE, last: 100) {
|
||||||
pullRequests(last: 100, states: MERGED) {
|
nodes {
|
||||||
nodes {
|
... on PullRequest {
|
||||||
authorAssociation
|
authorAssociation
|
||||||
mergedAt
|
mergedAt
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
issues(last: 100, states: CLOSED) {
|
}
|
||||||
nodes {
|
issues: search(query: $issueQuery, type: ISSUE, last: 100) {
|
||||||
|
nodes {
|
||||||
|
... on Issue {
|
||||||
authorAssociation
|
authorAssociation
|
||||||
closedAt
|
closedAt
|
||||||
}
|
}
|
||||||
@@ -28,25 +31,27 @@ try {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
const prSearchQuery = `repo:${GITHUB_OWNER}/${GITHUB_REPO} is:pr is:merged merged:>${sevenDaysAgo}`;
|
||||||
|
const issueSearchQuery = `repo:${GITHUB_OWNER}/${GITHUB_REPO} is:issue is:closed closed:>${sevenDaysAgo}`;
|
||||||
const output = execSync(
|
const output = execSync(
|
||||||
`gh api graphql -F owner=${GITHUB_OWNER} -F repo=${GITHUB_REPO} -f query='${query}'`,
|
`gh api graphql -F prQuery='${prSearchQuery}' -F issueQuery='${issueSearchQuery}' -f query='${query}'`,
|
||||||
{ encoding: 'utf-8' },
|
{ encoding: 'utf-8' },
|
||||||
);
|
);
|
||||||
const data = JSON.parse(output).data.repository;
|
const data = JSON.parse(output).data;
|
||||||
|
|
||||||
const prs = data.pullRequests.nodes
|
const prs = data.prs.nodes
|
||||||
.map((p: { authorAssociation: string; mergedAt: string }) => ({
|
.filter((p: any) => p && p.mergedAt)
|
||||||
|
.map((p: any) => ({
|
||||||
association: p.authorAssociation,
|
association: p.authorAssociation,
|
||||||
date: new Date(p.mergedAt).getTime(),
|
date: new Date(p.mergedAt).getTime(),
|
||||||
}))
|
}));
|
||||||
.sort((a: { date: number }, b: { date: number }) => a.date - b.date);
|
|
||||||
|
|
||||||
const issues = data.issues.nodes
|
const issues = data.issues.nodes
|
||||||
.map((i: { authorAssociation: string; closedAt: string }) => ({
|
.filter((i: any) => i && i.closedAt)
|
||||||
|
.map((i: any) => ({
|
||||||
association: i.authorAssociation,
|
association: i.authorAssociation,
|
||||||
date: new Date(i.closedAt).getTime(),
|
date: new Date(i.closedAt).getTime(),
|
||||||
}))
|
}));
|
||||||
.sort((a: { date: number }, b: { date: number }) => a.date - b.date);
|
|
||||||
|
|
||||||
const isMaintainer = (assoc: string) =>
|
const isMaintainer = (assoc: string) =>
|
||||||
['MEMBER', 'OWNER', 'COLLABORATOR'].includes(assoc);
|
['MEMBER', 'OWNER', 'COLLABORATOR'].includes(assoc);
|
||||||
@@ -54,11 +59,7 @@ try {
|
|||||||
const calculateThroughput = (
|
const calculateThroughput = (
|
||||||
items: { association: string; date: number }[],
|
items: { association: string; date: number }[],
|
||||||
) => {
|
) => {
|
||||||
if (items.length < 2) return 0;
|
return items.length / 7; // items per day over 7 day window
|
||||||
const first = items[0].date;
|
|
||||||
const last = items[items.length - 1].date;
|
|
||||||
const days = (last - first) / (1000 * 60 * 60 * 24);
|
|
||||||
return days > 0 ? items.length / days : items.length; // items per day
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const prOverall = calculateThroughput(prs);
|
const prOverall = calculateThroughput(prs);
|
||||||
|
|||||||
@@ -10,18 +10,21 @@ import { GITHUB_OWNER, GITHUB_REPO } from '../types.js';
|
|||||||
import { execSync } from 'node:child_process';
|
import { execSync } from 'node:child_process';
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
const sevenDaysAgo = new Date(Date.now() - 7 * 24 * 60 * 60 * 1000).toISOString().split('T')[0];
|
||||||
const query = `
|
const query = `
|
||||||
query($owner: String!, $repo: String!) {
|
query($prQuery: String!, $issueQuery: String!) {
|
||||||
repository(owner: $owner, name: $repo) {
|
prs: search(query: $prQuery, type: ISSUE, last: 100) {
|
||||||
pullRequests(last: 100, states: MERGED) {
|
nodes {
|
||||||
nodes {
|
... on PullRequest {
|
||||||
authorAssociation
|
authorAssociation
|
||||||
comments { totalCount }
|
comments { totalCount }
|
||||||
reviews { totalCount }
|
reviews { totalCount }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
issues(last: 100, states: CLOSED) {
|
}
|
||||||
nodes {
|
issues: search(query: $issueQuery, type: ISSUE, last: 100) {
|
||||||
|
nodes {
|
||||||
|
... on Issue {
|
||||||
authorAssociation
|
authorAssociation
|
||||||
comments { totalCount }
|
comments { totalCount }
|
||||||
}
|
}
|
||||||
@@ -29,14 +32,16 @@ try {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
const prSearchQuery = `repo:${GITHUB_OWNER}/${GITHUB_REPO} is:pr is:merged merged:>${sevenDaysAgo}`;
|
||||||
|
const issueSearchQuery = `repo:${GITHUB_OWNER}/${GITHUB_REPO} is:issue is:closed closed:>${sevenDaysAgo}`;
|
||||||
const output = execSync(
|
const output = execSync(
|
||||||
`gh api graphql -F owner=${GITHUB_OWNER} -F repo=${GITHUB_REPO} -f query='${query}'`,
|
`gh api graphql -F prQuery='${prSearchQuery}' -F issueQuery='${issueSearchQuery}' -f query='${query}'`,
|
||||||
{ encoding: 'utf-8' },
|
{ encoding: 'utf-8' },
|
||||||
);
|
);
|
||||||
const data = JSON.parse(output).data.repository;
|
const data = JSON.parse(output).data;
|
||||||
|
|
||||||
const prs = data.pullRequests.nodes;
|
const prs = data.prs.nodes.filter((p: any) => p && p.comments);
|
||||||
const issues = data.issues.nodes;
|
const issues = data.issues.nodes.filter((i: any) => i && i.comments);
|
||||||
|
|
||||||
const allItems = [
|
const allItems = [
|
||||||
...prs.map(
|
...prs.map(
|
||||||
|
|||||||
Reference in New Issue
Block a user