-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathgithub.ts
452 lines (422 loc) Β· 15.6 KB
/
github.ts
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
import {
getAssignee,
getDefaultBranch as getDefaultBranchFromContext,
getIssueDescription,
getIssueLabels,
getIssueLabelsForMatching,
getIssueNumber,
getIssueTitle,
getMilestoneNumber,
getRepoName,
getRepoOwnerLogin
} from "./context";
import {Context, Probot} from "probot";
import {hasValidSubscription} from "./plans";
import {interpolate} from "./interpolate";
import {Config} from "./entities/Config";
import {
getCommentMessage,
getConventionalPrTitlePrefix,
getDefaultBranch as getDefaultBranchFromConfig,
prSkipCI
} from "./config";
import {setOutput} from "@actions/core";
import {
formatAsExpandingMarkdown,
getStringLengthInBytes,
isProduction,
isRunningInGitHubActions,
makeGitSafe,
makePrefixGitSafe,
pushMetric,
sleep,
trimStringToByteLength,
wildcardMatch
} from "./utils";
export async function createIssueBranch(app: Probot, ctx: Context<any>, branchName: string, config: Config) {
if (await hasValidSubscription(app, ctx, config)) {
const sha = await getSourceBranchHeadSha(ctx, config, app.log)
if (sha) {
await createBranch(app, ctx, config, branchName, sha);
} else {
await addComment(ctx, config, 'Could not find source branch for new issue branch')
}
}
}
export async function getBranchNameFromIssue(ctx: Context<any>, config: Config) {
const title = getIssueTitle(ctx)
const result = await getBranchName(ctx, config, title)
// For magic number below see:
// https://stackoverflow.com/questions/60045157/what-is-the-maximum-length-of-a-github-branch-name
const MAX_BYTES_GITHUB_BRANCH_NAME = 243
if (getStringLengthInBytes(result) > MAX_BYTES_GITHUB_BRANCH_NAME) {
return trimStringToByteLength(result, MAX_BYTES_GITHUB_BRANCH_NAME)
} else {
return result
}
}
export async function getBranchName(ctx: Context<any>, config: Config, title: string) {
const number = getIssueNumber(ctx)
let result
if (config.branchName) {
if (config.branchName === 'tiny') {
result = `i${number}`
} else if (config.branchName === 'short') {
result = `issue-${number}`
} else if (config.branchName === 'full') {
result = `issue-${number}-${title}`
} else {
ctx.payload.issue.title = title
result = interpolate(config.branchName, ctx.payload, process.env)
}
} else {
result = `issue-${number}-${title}`
}
const replacementChar = config.gitSafeReplacementChar;
const replaceChars = config.gitReplaceChars;
return makePrefixGitSafe(getIssueBranchPrefix(ctx, config), {
replaceChars: replaceChars, //
replacementChar: replacementChar //
}) + makeGitSafe(result, {replaceChars: replaceChars, replacementChar: replacementChar})
}
export function getIssueNumberFromBranchName(branchName: string): number | undefined {
let match = branchName.match(/^[i]?(\d+)/)
if (match) {
return parseInt(match[1])
}
match = branchName.match(/issue-(\d+)/i)
if (match) {
return parseInt(match[1])
}
if (branchName.includes('/')) {
branchName = branchName.substring(branchName.lastIndexOf('/') + 1)
return getIssueNumberFromBranchName(branchName)
}
return undefined
}
export function getIssueBranchPrefix(ctx: Context<any>, config: Config) {
let result = ''
const branchConfig = getIssueBranchConfig(ctx, config)
if (branchConfig && branchConfig.prefix) {
result = branchConfig.prefix
}
return interpolate(result, ctx.payload, process.env)
}
export function getIssueBranchConfig(ctx: Context<any>, config: Config) {
if (config.branches.length > 0) {
const issueLabels = getIssueLabelsForMatching(ctx)
for (const branchConfig of config.branches) {
const labels = branchConfig.label instanceof Array ? branchConfig.label : [branchConfig.label];
if (allLabelsMatchIssueLabels(labels, issueLabels)) {
return branchConfig
}
}
}
return undefined
}
function allLabelsMatchIssueLabels(labels: Array<string>, issueLabels: Array<string>) {
return labels.every(label => issueLabels.some(issueLabel => wildcardMatch(label, issueLabel)))
}
export function skipForIssue(ctx: Context<any>, config: Config) {
const branchConfig = getIssueBranchConfig(ctx, config)
if (branchConfig) {
return branchConfig.skip === true
} else {
return false
}
}
export function skipBranchCreationForIssue(ctx: Context<any>, config: Config) {
const branchConfig = getIssueBranchConfig(ctx, config)
if (branchConfig) {
return branchConfig.skipBranch === true
} else {
return false
}
}
export async function addComment(ctx: Context<any>, config: Config, comment: string) {
if (!config.silent) {
const params = ctx.issue({body: comment});
try {
await ctx.octokit.issues.createComment(params);
} catch (e) {
console.info('Creating comment failed, retrying in 1 second');
await sleep(1000);
try {
await ctx.octokit.issues.createComment(params);
} catch (e) {
console.info('Creating comment failed');
}
}
}
}
export async function branchExists(ctx: Context<any>, branchName: string) {
const owner = getRepoOwnerLogin(ctx)
const repo = getRepoName(ctx)
try {
await ctx.octokit.git.getRef({
owner: owner, repo: repo, ref: `heads/${branchName}`
})
return true
} catch (err) {
return false
}
}
export async function deleteBranch(ctx: Context<any>, branchName: string) {
const owner = getRepoOwnerLogin(ctx)
const repo = getRepoName(ctx)
try {
await ctx.octokit.git.deleteRef({
owner: owner, repo: repo, ref: `heads/${branchName}`
})
return true
} catch (err) {
return false
}
}
export function getSourceBranch(ctx: Context<any>, config: Config) {
const branchConfig = getIssueBranchConfig(ctx, config)
if (branchConfig && branchConfig.name) {
return branchConfig.name
} else {
return getDefaultBranch(ctx, config)
}
}
function getPrTargetBranch(ctx: Context<any>, config: Config) {
const branchConfig = getIssueBranchConfig(ctx, config)
if (branchConfig && branchConfig.prTarget) {
return branchConfig.prTarget
} else if (branchConfig && branchConfig.name) {
return branchConfig.name
} else {
return getDefaultBranch(ctx, config)
}
}
async function getSourceBranchHeadSha(ctx: Context<any>, config: Config, log: any) {
const sourceBranch = getSourceBranch(ctx, config)
let result = await getBranchHeadSha(ctx, sourceBranch)
if (result) {
log.debug(`Source branch: ${sourceBranch}`)
}
if (!result) {
const defaultBranch = getDefaultBranch(ctx, config)
log.debug(`Source branch: ${defaultBranch}`)
result = await getBranchHeadSha(ctx, defaultBranch)
}
return result
}
function getDefaultBranch(ctx: Context<any>, config: Config) {
return getDefaultBranchFromConfig(config) || getDefaultBranchFromContext(ctx);
}
async function getBranchHeadSha(ctx: Context<any>, branch: string) {
try {
const res = await ctx.octokit.git.getRef({
owner: getRepoOwnerLogin(ctx), repo: getRepoName(ctx), ref: `heads/${branch}`
})
const ref = res.data.object
return ref.sha
} catch (e) {
return undefined
}
}
export async function createBranch(app: Probot, ctx: Context<any>, config: Config, branchName: string, sha: string) {
const owner = getRepoOwnerLogin(ctx)
const repo = getRepoName(ctx)
try {
const res = await ctx.octokit.git.createRef({
owner: owner, repo: repo, ref: `refs/heads/${branchName}`, sha: sha
})
app.log.info(`Branch created: ${branchName}`)
if (isRunningInGitHubActions()) {
setOutput('branchName', branchName)
}
const commentMessage = interpolate(getCommentMessage(config), {...ctx.payload, branchName: branchName})
await addComment(ctx, config, commentMessage)
if (isProduction()) {
pushMetric(app, owner);
}
return res
} catch (e: any) {
if (e.message === 'Reference already exists') {
app.log.info('Could not create branch as it already exists')
} else {
await addComment(ctx, config, `Could not create branch \`${branchName}\` due to: ${e.message}`)
}
}
}
export async function createPr(app: Probot, ctx: Context<any>, config: Config, username: string, branchName: string) {
const owner = getRepoOwnerLogin(ctx)
const repo = getRepoName(ctx)
const base = getPrTargetBranch(ctx, config)
const title = getIssueTitle(ctx)
const draft = config.openDraftPR;
try {
const baseHeadSha = await getBranchHeadSha(ctx, base)
const branchHeadSha = await getBranchHeadSha(ctx, branchName)
if (branchHeadSha === baseHeadSha) {
app.log.info('Branch and base heads are equal, creating empty commit for PR')
await createEmptyCommit(ctx, branchName, getCommitText(ctx, config), String(branchHeadSha))
}
const {data: pr} = await ctx.octokit.pulls.create(
{owner, repo, head: branchName, base, title, body: getPrBody(app, ctx, config), draft: draft})
app.log.info(`${draft ? 'Created draft' : 'Created'} pull request ${pr.number} for branch ${branchName}`)
await copyIssueAttributesToPr(app, ctx, config, pr)
} catch (e: any) {
app.log.info(`Could not create PR (${e.message})`)
await addComment(ctx, config, `Could not create PR (${e.message})`)
}
}
async function createEmptyCommit(ctx: Context<any>, branchName: string, message: string, headSha: string) {
const owner = getRepoOwnerLogin(ctx)
const repo = getRepoName(ctx)
const createEptyCommitMutation = `
mutation($repositoryNameWithOwner: String!, $branchName: String!, $message: String!, $headSha: GitObjectID!) {
createCommitOnBranch(
input: {
branch: {repositoryNameWithOwner: $repositoryNameWithOwner, branchName: $branchName},
message: {headline: $message},
fileChanges: {},
expectedHeadOid: $headSha
}
) {
commit {
url
}
}
}`
await ctx.octokit.graphql(createEptyCommitMutation, {
repositoryNameWithOwner: `${owner}/${repo}`, branchName: branchName, message: message, headSha: headSha
})
}
function getCommitText(ctx: Context<any>, config: Config) {
const draft = config.openDraftPR;
const draftText = draft ? 'draft ' : ''
const issueNumber = getIssueNumber(ctx)
const text = `Create ${draftText}PR for #${issueNumber}`
if (prSkipCI(config)) {
return text + '\n[skip ci]'
} else {
return text
}
}
function getPrBody(app: Probot, ctx: Context<any>, config: Config) {
const issueNumber = getIssueNumber(ctx)
let result = ''
if (config.copyIssueDescriptionToPR) {
app.log.info('Copying issue description to PR')
const issueDescription = getIssueDescription(ctx)
if (issueDescription) {
result += formatAsExpandingMarkdown('Original issue description', issueDescription)
result += '\n'
}
}
result += `closes #${issueNumber}`
return result
}
async function copyIssueAttributesToPr(app: Probot, ctx: Context<any>, config: Config, pr: any) {
try {
if (config.copyIssueLabelsToPR) {
app.log.info('Copying issue labels to PR')
await copyIssueLabelsToPr(ctx, pr)
}
if (config.copyIssueAssigneeToPR) {
app.log.info('Copying issue assignee to PR')
await copyIssueAssigneeToPr(ctx, pr)
}
if (config.copyIssueProjectsToPR) {
app.log.info('Copying issue projects to PR')
await copyIssueProjectsToPr(ctx, pr)
}
if (config.copyIssueMilestoneToPR) {
app.log.info('Copying issue milestone to PR')
await copyIssueMilestoneToPr(ctx, pr)
}
} catch (e: any) {
app.log.info(`Could not copy issue attributes (${e.message})`)
await addComment(ctx, config, `Could not copy issue attributes (${e.message})`)
}
}
async function copyIssueLabelsToPr(ctx: Context<any>, pr: any) {
const owner = getRepoOwnerLogin(ctx)
const repo = getRepoName(ctx)
const labels = getIssueLabels(ctx)
if (labels.length > 0) {
await ctx.octokit.issues.addLabels({owner, repo, issue_number: pr.number, labels})
}
}
async function copyIssueAssigneeToPr(ctx: Context<any>, pr: any) {
const owner = getRepoOwnerLogin(ctx)
const repo = getRepoName(ctx)
const assignee = getAssignee(ctx)
await ctx.octokit.issues.addAssignees({owner, repo, issue_number: pr.number, assignees: [assignee]})
}
async function copyIssueMilestoneToPr(ctx: Context<any>, pr: any) {
const owner = getRepoOwnerLogin(ctx)
const repo = getRepoName(ctx)
const number = getMilestoneNumber(ctx)
if (number) {
await ctx.octokit.issues.update({owner, repo, issue_number: pr.number, milestone: number})
}
}
async function copyIssueProjectsToPr(ctx: Context<any>, pr: any) {
const projectIds = await queryProjectIdsForIssue(ctx)
const mutatePullRequest = `
mutation($pullRequestId: ID!, $projectIds: [ID!]) {
updatePullRequest(input:{pullRequestId: $pullRequestId, projectIds: $projectIds}) {
pullRequest{
id
}
}
}`
await ctx.octokit.graphql(mutatePullRequest, {
pullRequestId: pr.node_id, projectIds: projectIds
})
}
async function queryProjectIdsForIssue(ctx: Context<any>) {
const queryProjectIds = `
query ($owner: String!, $repo: String!, $number: Int!) {
repository(owner: $owner, name: $repo) {
issue(number: $number) {
projectCards {
nodes {
project {
id
}
}
}
}
}
}
`
const queryResult: any = await ctx.octokit.graphql(queryProjectIds, {
owner: getRepoOwnerLogin(ctx), repo: getRepoName(ctx), number: getIssueNumber(ctx)
})
const projectCards = queryResult?.repository?.issue?.projectCards
const result = []
if (projectCards) {
for (const node of projectCards.nodes) {
const projectId = node.project?.id
if (projectId) {
result.push(projectId)
}
}
}
return result
}
export async function updatePrTitle(app: Probot, ctx: Context<any>, config: Config, pr: any, issueTitle: string, labels: Array<string>) {
const owner = getRepoOwnerLogin(ctx)
const repo = getRepoName(ctx)
const pullNumber = pr.number
const conventionalPrefix = getConventionalPrTitlePrefix(config, labels)
const updatedTitle = conventionalPrefix + ' ' + issueTitle
if (updatedTitle !== pr.title) {
app.log.info(`Updating prefix for PR #${pullNumber} in ${owner}/${repo} to: ${conventionalPrefix}`)
await ctx.octokit.pulls.update({owner: owner, repo: repo, pull_number: pullNumber, title: updatedTitle})
}
}
export async function updatePrBody(app: Probot, ctx: Context<any>, config: Config, pr: any, body: any) {
const owner = getRepoOwnerLogin(ctx)
const repo = getRepoName(ctx)
const pullNumber = pr.number
app.log.info(`Updating body for PR #${pullNumber} in ${owner}/${repo}`)
await ctx.octokit.pulls.update({owner: owner, repo: repo, pull_number: pullNumber, body: body})
}