1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
|
name: Documentation PR nudger
# Posts a comment to PR's labeled "documentation" in the following cases:
# 1) The assignee is not promptly providing feedback for the iteration
# 2) The author received feedback but hasn't acted on it for a long time
# Skips weekends and first weeks of January and May.
#
# See https://ydb.tech/docs/en/contributor/documentation/review for more details
on:
schedule:
- cron: '0 0,6,12,18 * * *'
permissions:
contents: read
issues: write
pull-requests: write
jobs:
nudge:
runs-on: ubuntu-latest
env:
AUTHOR_RESPONSE_THRESHOLD_HOURS: 24 # when to nudge reviewers after author
REVIEWER_RESPONSE_THRESHOLD_DAYS: 7 # when to nudge author after reviewer
REVIEWER_NUDGE_COOLDOWN_HOURS: 24 # min hours between reviewer-nudges
AUTHOR_NUDGE_COOLDOWN_DAYS: 7 # min days between author-nudges
steps:
- uses: actions/github-script@v8
with:
github-token: ${{ secrets.YDBOT_TOKEN }}
script: |
const { owner, repo } = context.repo;
const authorThresholdH = Number(process.env.AUTHOR_RESPONSE_THRESHOLD_HOURS);
const reviewerThresholdD = Number(process.env.REVIEWER_RESPONSE_THRESHOLD_DAYS);
const reviewerCooldownH = Number(process.env.REVIEWER_NUDGE_COOLDOWN_HOURS);
const authorCooldownD = Number(process.env.AUTHOR_NUDGE_COOLDOWN_DAYS);
const BOT_MARKER = '<!-- docs-review-nudge -->';
const now = new Date();
const day = now.getUTCDay();
const date = now.getUTCDate(); // 1–31
const month = now.getUTCMonth() + 1; // 1–12
// skip weekends, first week of May, first week of the year
if (
day === 0 || day === 6 || // 0=Sun,6=Sat
(month === 5 && date <= 7) ||
(month === 1 && date <= 7)
) {
console.log(`Skip run: weekend or first-week (month=${month}, date=${date}, day=${day})`);
return;
}
const isWeekend = d => d.getUTCDay() === 0 || d.getUTCDay() === 6;
// sum only business-hours between two dates
function businessMsBetween(start, end) {
let ms = 0;
let cur = new Date(start);
while (cur < end) {
if (!isWeekend(cur)) ms += 3600e3;
cur = new Date(cur.getTime() + 3600e3);
}
return ms;
}
// count only business-days between two dates
function businessDaysBetween(start, end) {
let days = 0;
let cur = new Date(start);
cur.setUTCHours(0,0,0,0);
const endDay = new Date(end);
endDay.setUTCHours(0,0,0,0);
while (cur < endDay) {
if (!isWeekend(cur)) days++;
cur.setUTCDate(cur.getUTCDate() + 1);
}
return days;
}
// 1) search open, non-draft docs PRs
const q = [
`repo:${owner}/${repo}`,
`type:pr`,
`state:open`,
`label:documentation`,
`draft:false`
].join(' ');
const { data: { items: docsPRs } } = await github.rest.search.issuesAndPullRequests({ q, per_page: 100 });
console.log(`Found ${docsPRs.length} documentation PR(s)`);
// fetch primary-docs-reviewers (for assignment)
const primaryTeamMembers = await github.paginate(
github.rest.teams.listMembersInOrg,
{ org: owner, team_slug: 'primary-docs-reviewers', per_page: 100 }
);
const primaryReviewerLogins = primaryTeamMembers.map(u => u.login);
console.log(`Loaded ${primaryReviewerLogins.length} primary reviewer(s) from team`);
// fetch final-docs-reviewers (for activity counting)
const finalTeamMembers = await github.paginate(
github.rest.teams.listMembersInOrg,
{ org: owner, team_slug: 'final-docs-reviewers', per_page: 100 }
);
const finalReviewerLogins = finalTeamMembers.map(u => u.login);
console.log(`Loaded ${finalReviewerLogins.length} final reviewer(s) from team`);
for (const prItem of docsPRs) {
const prNum = prItem.number;
console.log(`\n→ Processing PR #${prNum}`);
const pr = (await github.rest.pulls.get({ owner, repo, pull_number: prNum })).data;
const assignees = pr.assignees.map(a => a.login);
// assign primary reviewer if none assigned
if (!assignees.some(a => primaryReviewerLogins.includes(a))) {
const pick = primaryReviewerLogins[Math.floor(Math.random() * primaryReviewerLogins.length)];
await github.rest.issues.addAssignees({
owner, repo, issue_number: prNum, assignees: [pick]
});
console.log(`Assigned primary reviewer @${pick} to PR #${prNum}`);
}
// combine assignees + final-reviewers for activity
const reviewerLogins = Array.from(new Set([...assignees, ...finalReviewerLogins]));
// collect all events
const [comments, reviewComments, reviews, commits] = await Promise.all([
github.paginate(github.rest.issues.listComments, { owner, repo, issue_number: prNum, per_page: 100 }),
github.paginate(github.rest.pulls.listReviewComments, { owner, repo, pull_number: prNum, per_page: 100 }),
github.paginate(github.rest.pulls.listReviews, { owner, repo, pull_number: prNum, per_page: 100 }),
github.paginate(github.rest.pulls.listCommits, { owner, repo, pull_number: prNum, per_page: 100 }),
]);
const author = pr.user.login;
const extract = (arr, whoFn, dateKey) =>
arr
.map(i => {
const d = new Date(i[dateKey]);
return { who: whoFn(i), when: d };
})
.filter(x => x.when && !isNaN(x.when.getTime()));
const allEvents = [
...extract(comments, c => c.user.login, 'created_at'),
...extract(reviewComments, c => c.user.login, 'created_at'),
...extract(reviews, r => r.user.login, 'submitted_at'),
...extract(commits, c => c.author?.login || c.commit?.author?.name, 'commit.author.date'),
{ who: author, when: new Date(pr.created_at) }
].filter(e => e.when && !isNaN(e.when.getTime()));
const authorEvents = allEvents.filter(e => e.who === author).map(e => e.when);
const reviewerEvents = allEvents.filter(e => reviewerLogins.includes(e.who)).map(e => e.when);
const lastAuthorActivity = authorEvents.length ? new Date(Math.max(...authorEvents)) : new Date(pr.created_at);
const lastReviewerActivity = reviewerEvents.length ? new Date(Math.max(...reviewerEvents)) : new Date(0);
// last nudge time
const nudgeTimes = comments
.map(c => new Date(c.created_at))
.filter(d => !isNaN(d.getTime()) && comments.find(cc => cc.body.includes(BOT_MARKER)));
const lastNudgeTime = nudgeTimes.length ? new Date(Math.max(...nudgeTimes)) : new Date(0);
// RULE 1: nudge reviewers
const msSinceAuthor = businessMsBetween(lastAuthorActivity, now);
const hoursSinceAuthor = Math.floor(msSinceAuthor / 3600e3);
const msSinceLastRevNudge= businessMsBetween(lastNudgeTime, now);
if (
lastAuthorActivity > lastReviewerActivity &&
msSinceAuthor > authorThresholdH * 3600e3 &&
msSinceLastRevNudge > reviewerCooldownH * 3600e3
) {
const { data: comment } = await github.rest.issues.createComment({
owner, repo, issue_number: prNum,
body: `Hey ${assignees.map(a=>`@${a}`).join(', ')}, it has been ${hoursSinceAuthor} business-hours since the author's last update, could you please review? ${BOT_MARKER}`
});
console.log(`Comment posted on PR #${prNum}: ${comment.html_url}`);
continue;
} else {
const reasons = [];
if (!(lastAuthorActivity > lastReviewerActivity)) reasons.push(`lastAuthor(${lastAuthorActivity.toISOString()})≤lastReviewer(${lastReviewerActivity.toISOString()})`);
if (!(msSinceAuthor > authorThresholdH * 3600e3)) reasons.push(`hoursSinceAuthor=${hoursSinceAuthor}h≤${authorThresholdH}h`);
if (!(msSinceLastRevNudge > reviewerCooldownH * 3600e3)) reasons.push(`hoursSinceLastNudge=${Math.floor(msSinceLastRevNudge/3600e3)}h≤${reviewerCooldownH}h`);
console.log(`Reviewer nudge skipped: ${reasons.join('; ')}`);
}
// RULE 2: nudge author
const daysSinceReviewer = businessDaysBetween(lastReviewerActivity, now);
const daysSinceLastAuthNudge = businessDaysBetween(lastNudgeTime, now);
if (
lastReviewerActivity > lastAuthorActivity &&
daysSinceReviewer > reviewerThresholdD &&
daysSinceLastAuthNudge > authorCooldownD
) {
const { data: comment } = await github.rest.issues.createComment({
owner, repo, issue_number: prNum,
body: `Heads-up: it's been ${daysSinceReviewer} business-days since a reviewer comment. @${author}, any updates? ${assignees.map(a=>`@${a}`).join(' ')}, please check the status with the author. ${BOT_MARKER}`
});
console.log(`Comment posted on PR #${prNum}: ${comment.html_url}`);
} else {
const reasons = [];
if (!(lastReviewerActivity > lastAuthorActivity)) reasons.push(`lastReviewer(${lastReviewerActivity.toISOString()})≤lastAuthor(${lastAuthorActivity.toISOString()})`);
if (!(daysSinceReviewer > reviewerThresholdD)) reasons.push(`daysSinceReviewer=${daysSinceReviewer}d≤${reviewerThresholdD}d`);
if (!(daysSinceLastAuthNudge > authorCooldownD)) reasons.push(`daysSinceLastAuthNudge=${daysSinceLastAuthNudge}d≤${authorCooldownD}d`);
console.log(`Author nudge skipped: ${reasons.join('; ')}`);
}
}
|