-
-
Notifications
You must be signed in to change notification settings - Fork 373
/
Copy pathGitHubDSL.ts
479 lines (413 loc) · 11.1 KB
/
GitHubDSL.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
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
// Please don't have includes in here that aren't inside the DSL folder, or the d.ts/flow defs break
import { GitCommit } from "./Commit"
import { Octokit as GitHub } from "@octokit/rest"
// This is `danger.github` inside the JSON
export interface GitHubJSONDSL {
/** The issue metadata for a code review session */
issue: GitHubIssue
/** The PR metadata for a code review session */
pr: GitHubPRDSL
/** The PR metadata specifically formatted for using with the GitHub API client */
thisPR: GitHubAPIPR
/** The github commit metadata for a code review session */
commits: GitHubCommit[]
/** The reviews left on this pull request */
reviews: GitHubReview[]
/** The people/teams requested to review this PR */
requested_reviewers: GitHubReviewers
}
// This is `danger.github`
/** The GitHub metadata for your PR */
export interface GitHubDSL extends GitHubJSONDSL {
/**
* An authenticated API so you can extend danger's behavior by using the [GitHub v3 API](https://developer.github.com/v3/).
*
* A set up instance of the "github" npm module. You can get the full [API here](https://octokit.github.io/node-github/).
*/
api: GitHub
/** A scope for useful functions related to GitHub */
utils: GitHubUtilsDSL
/**
* Sets a markdown summary which shows on the overview page for the
* results of all steps in your CI job.
*
* See: https://github.blog/2022-05-09-supercharging-github-actions-with-job-summaries/
*/
setSummaryMarkdown: (markdown: string) => void
}
/** Useful functions for GitHub related work */
export interface GitHubUtilsDSL {
/**
* Creates HTML for a sentence of clickable links for an array of paths.
* This uses the source of the PR as the target, not the destination repo.
* You can manually set the target repo and branch however, to make it work how you want.
*
* @param {string} paths A list of strings representing file paths
* @param {string} useBasename Show either the file name, or the full path - defaults to just file name e.g. true.
* @param {string} repoSlug An optional override for the repo slug, ex: "orta/ORStackView"
* @param {string} branch An optional override for the branch, ex: "v3"
* @returns {string} A HTML string of <a>'s built as a sentence.
*/
fileLinks(paths: string[], useBasename?: boolean, repoSlug?: string, branch?: string): string
/**
* Downloads a file's contents via the GitHub API. You'll want to use
* this instead of `fs.readFile` when aiming to support working with Peril.
*
* @param {string} path The path fo the file that exists
* @param {string} repoSlug An optional reference to the repo's slug: e.g. danger/danger-js
* @param {string} ref An optional reference to a branch/sha
*/
fileContents(path: string, repoSlug?: string, ref?: string): Promise<string>
/**
* An API for creating, updating and closing an issue. Basically
* this is really useful for reporting back via a separate
* issue that you may want to keep up to date at all times.
*
* @param {string} id The unique ID for the message to create, close
* @param {string} content the content of the message
* @param {any} config settings for the issue
* @returns {string} A HTML string of <a>'s built as a sentence.
*/
createUpdatedIssueWithID: (
id: string,
content: string,
config: { title: string; open: boolean; owner: string; repo: string }
) => Promise<string>
/**
* An API for creating, or setting a label to an issue. Usable from Peril
* by adding an additional param for settings about a repo.
*
* @param {obj} labelConfig The config for the label
* @param {obj | undefined} Optional: the config for the issue
* @returns {Promise<undefined>} No return value.
*/
createOrAddLabel: (
labelConfig: { name: string; color: string; description: string },
repoConfig?: { owner: string; repo: string; id: number }
) => Promise<void>
createOrUpdatePR: (
config: {
/** PR title */
title: string
/** PR body */
body: string
/** The danger in danger/danger-js - defaults to the PR base name if undefined */
owner?: string
/** The danger-js in danger/danger-js - defaults to the PR base repo if undefined */
repo?: string
/** A message for the commit */
commitMessage: string
/** The name of the branch on the repo */
newBranchName: string
/** Base branch for the new branch e.g. what should Danger create the new branch from */
baseBranch: string
},
fileMap: any
) => Promise<any>
}
/**
* This is `danger.github.issue` It refers to the issue that makes up the Pull Request.
* GitHub treats all pull requests as a special type of issue. This DSL contains only parts of the issue that are
* not found in the PR DSL, however it does contain the full JSON structure.
*
* A GitHub Issue
*/
export interface GitHubIssue {
/**
* The labels associated with this issue
*/
labels: GitHubIssueLabel[]
}
// Subtypes specific to issues
export interface GitHubIssueLabel {
/** The identifying number of this label */
id: number
/** The URL that links to this label */
url: string
/** The name of the label */
name: string
/** The color associated with this label */
color: string
}
export interface GitHubIssueComment {
/**
* UUID for the comment
*/
id: string
/**
* The User who made the comment
*/
user: GitHubUser
/**
* Textual representation of comment
*/
body: string
}
// This is `danger.github.pr`
/**
* An exact copy of the PR's reference JSON. This interface has type'd the majority
* of it for tooling's sake, but any extra metadata which GitHub send will still be
* inside the JS object.
*/
export interface GitHubPRDSL {
/**
* The UUID for the PR
*/
number: number
/**
* The state for the PR
*/
state: "closed" | "open" | "locked" | "merged"
/**
* Has the PR been locked to contributors only?
*/
locked: boolean
/**
* The title of the PR
*/
title: string
/**
* The markdown body message of the PR
*/
body: string
/**
* ISO6801 Date string for when PR was created
*/
created_at: string
/**
* ISO6801 Date string for when PR was updated
*/
updated_at: string
/**
* optional ISO6801 Date string for when PR was closed
*/
closed_at: string | null
/**
* Optional ISO6801 Date string for when PR was merged.
* Danger probably shouldn't be running in this state.
*/
merged_at: string | null
/**
* Merge reference for the _other_ repo.
*/
head: GitHubMergeRef
/**
* Merge reference for _this_ repo.
*/
base: GitHubMergeRef
/**
* The User who submitted the PR
*/
user: GitHubUser
/**
* The User who is assigned the PR
*/
assignee: GitHubUser
/**
* The Users who are assigned to the PR
*/
assignees: GitHubUser[]
/**
* Is in draft state?
*/
draft: boolean
/**
* Has the PR been merged yet?
*/
merged: boolean
/**
* The number of comments on the PR
*/
comments: number
/**
* The number of review-specific comments on the PR
*/
review_comments: number
/**
* The number of commits in the PR
*/
commits: number
/**
* The number of additional lines in the PR
*/
additions: number
/**
* The number of deleted lines in the PR
*/
deletions: number
/**
* The number of changed files in the PR
*/
changed_files: number
/**
* The link back to this PR as user-facing
*/
html_url: string
/** How does the PR author relate to this repo/org? */
author_association:
| "COLLABORATOR"
| "CONTRIBUTOR"
| "FIRST_TIMER"
| "FIRST_TIME_CONTRIBUTOR"
| "MEMBER"
| "NONE"
| "OWNER"
}
// These are the individual subtypes of objects inside the larger DSL objects above.
/** A GitHub specific implementation of a git commit, it has GitHub user names instead of an email. */
export interface GitHubCommit {
/** The raw commit metadata */
commit: GitCommit
/** The SHA for the commit */
sha: string
/** the url for the commit on GitHub */
url: string
/** The GitHub user who wrote the code */
author: GitHubUser
/** The GitHub user who shipped the code */
committer: GitHubUser
/** An array of parent commit shas */
parents: any[]
}
/**
* A GitHub user account.
*/
export interface GitHubUser {
/**
* Generic UUID
*/
id: number
/**
* The handle for the user/org
*/
login: string
/**
* Whether the user is an org, or a user
*/
type: "User" | "Organization" | "Bot"
/**
* The url for a users's image
*/
avatar_url: string
/**
* The href for a users's page
*/
href: string
}
/**
* A GitHub Repo
*/
export interface GitHubRepo {
/**
* Generic UUID
*/
id: number
/**
* The name of the repo, e.g. "Danger-JS"
*/
name: string
/**
* The full name of the owner + repo, e.g. "Danger/Danger-JS"
*/
full_name: string
/**
* The owner of the repo
*/
owner: GitHubUser
/**
* Is the repo publicly accessible?
*/
private: boolean
/**
* The textual description of the repo
*/
description: string
/**
* Is the repo a fork?
*/
fork: boolean
/**
* Is someone assigned to this PR?
*/
assignee: GitHubUser
/**
* Are there people assigned to this PR?
*/
assignees: GitHubUser[]
/**
* The root web URL for the repo, e.g. https://github.com/artsy/emission
*/
html_url: string
}
export interface GitHubMergeRef {
/**
* The human display name for the merge reference, e.g. "artsy:master"
*/
label: string
/**
* The reference point for the merge, e.g. "master"
*/
ref: string
/**
* The reference point for the merge, e.g. "704dc55988c6996f69b6873c2424be7d1de67bbe"
*/
sha: string
/**
* The user that owns the merge reference e.g. "artsy"
*/
user: GitHubUser
/**
* The repo from whch the reference comes from
*/
repo: GitHubRepo
}
/**
* GitHubReview
* While a review is pending, it will only have a user. Once a review is complete, the rest of
* the review attributes will be present
* @export
* @interface GitHubReview
*/
export interface GitHubReview {
/**
* The user requested to review, or the user who has completed the review
*/
user: GitHubUser
/**
* If there is a review, this provides the ID for it
*/
id?: number
/**
* If there is a review, the body of the review
*/
body?: string
/**
* If there is a review, the commit ID this review was made on
*/
commit_id?: string
/**
* The state of the review
* APPROVED, REQUEST_CHANGES, COMMENT or PENDING
*/
state?: "APPROVED" | "REQUEST_CHANGES" | "COMMENT" | "PENDING"
}
/** Provides the current PR in an easily used way for params in `github.api` calls */
export interface GitHubAPIPR {
/** The repo owner */
owner: string
/** The repo name */
repo: string
/**
* The PR number
* @deprecated use `pull_number` instead
*/
number: number
/** The PR number */
pull_number: number
}
export interface GitHubReviewers {
/** Users that have been requested */
users: GitHubUser[]
/** Teams that have been requested */
teams: any[]
}