@octokit/openapi 11.1.0 → 11.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/generated/api.github.com.deref.json +4 -44
  2. package/generated/api.github.com.json +4 -45
  3. package/generated/ghec-diff-to-api.github.com.deref.json +1 -1
  4. package/generated/ghec-diff-to-api.github.com.json +1 -1
  5. package/generated/ghec.deref.json +7 -47
  6. package/generated/ghec.json +7 -48
  7. package/generated/ghes-3.5-anicca-diff-to-ghes-3.6.deref.json +0 -84
  8. package/generated/ghes-3.5-diff-to-ghes-3.6.deref.json +1 -4574
  9. package/generated/ghes-3.5-diff-to-ghes-3.6.json +1 -674
  10. package/generated/ghes-3.5.deref.json +194 -54
  11. package/generated/ghes-3.5.json +8 -55
  12. package/generated/ghes-3.6-anicca-diff-to-ghes-3.7.deref.json +0 -48
  13. package/generated/ghes-3.6-diff-to-ghes-3.7.deref.json +1 -4738
  14. package/generated/ghes-3.6-diff-to-ghes-3.7.json +1 -683
  15. package/generated/ghes-3.6.deref.json +30 -54
  16. package/generated/ghes-3.6.json +8 -55
  17. package/generated/ghes-3.7-diff-to-ghes-3.8.deref.json +1 -1
  18. package/generated/ghes-3.7-diff-to-ghes-3.8.json +1 -1
  19. package/generated/ghes-3.7.deref.json +17 -47
  20. package/generated/ghes-3.7.json +7 -48
  21. package/generated/ghes-3.8-anicca-diff-to-api.github.com.deref.json +0 -38
  22. package/generated/ghes-3.8-diff-to-api.github.com.deref.json +1 -4748
  23. package/generated/ghes-3.8-diff-to-api.github.com.json +1 -672
  24. package/generated/ghes-3.8.deref.json +18 -54
  25. package/generated/ghes-3.8.json +8 -55
  26. package/generated/github.ae-anicca-diff-to-api.github.com.deref.json +0 -84
  27. package/generated/github.ae-diff-to-api.github.com.deref.json +1 -4594
  28. package/generated/github.ae-diff-to-api.github.com.json +1 -676
  29. package/generated/github.ae.deref.json +174 -54
  30. package/generated/github.ae.json +8 -55
  31. package/package.json +2 -2
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "openapi": "3.0.3",
3
3
  "info": {
4
- "version": "11.1.0",
4
+ "version": "11.1.2",
5
5
  "title": "GitHub's official OpenAPI spec + Octokit extension",
6
6
  "description": "OpenAPI specs from https://github.com/github/rest-api-description with the 'x-octokit' extension required by the Octokit SDKs",
7
7
  "license": {
@@ -6601,120 +6601,6 @@
6601
6601
  }
6602
6602
  }
6603
6603
  },
6604
- "/repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers": {
6605
- "post": {
6606
- "summary": "Request reviewers for a pull request",
6607
- "description": "This endpoint triggers [notifications](https://docs.github.com/enterprise-server@3.5/github/managing-subscriptions-and-notifications-on-github/about-notifications). Creating content too quickly using this endpoint may result in secondary rate limiting. See \"[Secondary rate limits](https://docs.github.com/enterprise-server@3.5/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.5/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
6608
- "tags": [
6609
- "pulls"
6610
- ],
6611
- "operationId": "pulls/request-reviewers",
6612
- "externalDocs": {
6613
- "description": "API method documentation",
6614
- "url": "https://docs.github.com/enterprise-server@3.5/rest/reference/pulls#request-reviewers-for-a-pull-request"
6615
- },
6616
- "parameters": [
6617
- {
6618
- "$ref": "#/components/parameters/owner"
6619
- },
6620
- {
6621
- "$ref": "#/components/parameters/repo"
6622
- },
6623
- {
6624
- "$ref": "#/components/parameters/pull-number"
6625
- }
6626
- ],
6627
- "requestBody": {
6628
- "required": false,
6629
- "content": {
6630
- "application/json": {
6631
- "schema": {
6632
- "type": "object",
6633
- "properties": {
6634
- "reviewers": {
6635
- "type": "array",
6636
- "description": "An array of user `login`s that will be requested.",
6637
- "items": {
6638
- "type": "string"
6639
- }
6640
- },
6641
- "team_reviewers": {
6642
- "type": "array",
6643
- "description": "An array of team `slug`s that will be requested.",
6644
- "items": {
6645
- "type": "string"
6646
- }
6647
- }
6648
- },
6649
- "anyOf": [
6650
- {
6651
- "required": [
6652
- "reviewers"
6653
- ]
6654
- },
6655
- {
6656
- "required": [
6657
- "team_reviewers"
6658
- ]
6659
- }
6660
- ]
6661
- },
6662
- "examples": {
6663
- "default": {
6664
- "value": {
6665
- "reviewers": [
6666
- "octocat",
6667
- "hubot",
6668
- "other_user"
6669
- ],
6670
- "team_reviewers": [
6671
- "justice-league"
6672
- ]
6673
- }
6674
- }
6675
- }
6676
- }
6677
- }
6678
- },
6679
- "responses": {
6680
- "201": {
6681
- "description": "Response",
6682
- "content": {
6683
- "application/json": {
6684
- "schema": {
6685
- "$ref": "#/components/schemas/pull-request-simple"
6686
- },
6687
- "examples": {
6688
- "default": {
6689
- "$ref": "#/components/examples/pull-request-review-request"
6690
- }
6691
- }
6692
- }
6693
- }
6694
- },
6695
- "403": {
6696
- "$ref": "#/components/responses/forbidden"
6697
- },
6698
- "422": {
6699
- "description": "Unprocessable Entity if user is not a collaborator"
6700
- }
6701
- },
6702
- "x-github": {
6703
- "triggersNotification": true,
6704
- "githubCloudOnly": false,
6705
- "enabledForGitHubApps": true,
6706
- "category": "pulls",
6707
- "subcategory": "review-requests"
6708
- },
6709
- "x-octokit": {
6710
- "diff": {
6711
- "ghes-3.6": {
6712
- "type": "changed"
6713
- }
6714
- }
6715
- }
6716
- }
6717
- },
6718
6604
  "/repos/{owner}/{repo}/secret-scanning/alerts": {
6719
6605
  "get": {
6720
6606
  "summary": "List secret scanning alerts for a repository",
@@ -29082,565 +28968,6 @@
29082
28968
  "changed_files": 5
29083
28969
  }
29084
28970
  },
29085
- "pull-request-review-request": {
29086
- "value": {
29087
- "url": "https://api.github.com/repos/octocat/Hello-World/pulls/1347",
29088
- "id": 1,
29089
- "node_id": "MDExOlB1bGxSZXF1ZXN0MQ==",
29090
- "html_url": "https://github.com/octocat/Hello-World/pull/1347",
29091
- "diff_url": "https://github.com/octocat/Hello-World/pull/1347.diff",
29092
- "patch_url": "https://github.com/octocat/Hello-World/pull/1347.patch",
29093
- "issue_url": "https://api.github.com/repos/octocat/Hello-World/issues/1347",
29094
- "commits_url": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits",
29095
- "review_comments_url": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments",
29096
- "review_comment_url": "https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}",
29097
- "comments_url": "https://api.github.com/repos/octocat/Hello-World/issues/1347/comments",
29098
- "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e",
29099
- "number": 1347,
29100
- "state": "open",
29101
- "locked": true,
29102
- "title": "Amazing new feature",
29103
- "user": {
29104
- "login": "octocat",
29105
- "id": 1,
29106
- "node_id": "MDQ6VXNlcjE=",
29107
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
29108
- "gravatar_id": "",
29109
- "url": "https://api.github.com/users/octocat",
29110
- "html_url": "https://github.com/octocat",
29111
- "followers_url": "https://api.github.com/users/octocat/followers",
29112
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
29113
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
29114
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
29115
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
29116
- "organizations_url": "https://api.github.com/users/octocat/orgs",
29117
- "repos_url": "https://api.github.com/users/octocat/repos",
29118
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
29119
- "received_events_url": "https://api.github.com/users/octocat/received_events",
29120
- "type": "User",
29121
- "site_admin": false
29122
- },
29123
- "body": "Please pull these awesome changes in!",
29124
- "labels": [
29125
- {
29126
- "id": 208045946,
29127
- "node_id": "MDU6TGFiZWwyMDgwNDU5NDY=",
29128
- "url": "https://api.github.com/repos/octocat/Hello-World/labels/bug",
29129
- "name": "bug",
29130
- "description": "Something isn't working",
29131
- "color": "f29513",
29132
- "default": true
29133
- }
29134
- ],
29135
- "milestone": {
29136
- "url": "https://api.github.com/repos/octocat/Hello-World/milestones/1",
29137
- "html_url": "https://github.com/octocat/Hello-World/milestones/v1.0",
29138
- "labels_url": "https://api.github.com/repos/octocat/Hello-World/milestones/1/labels",
29139
- "id": 1002604,
29140
- "node_id": "MDk6TWlsZXN0b25lMTAwMjYwNA==",
29141
- "number": 1,
29142
- "state": "open",
29143
- "title": "v1.0",
29144
- "description": "Tracking milestone for version 1.0",
29145
- "creator": {
29146
- "login": "octocat",
29147
- "id": 1,
29148
- "node_id": "MDQ6VXNlcjE=",
29149
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
29150
- "gravatar_id": "",
29151
- "url": "https://api.github.com/users/octocat",
29152
- "html_url": "https://github.com/octocat",
29153
- "followers_url": "https://api.github.com/users/octocat/followers",
29154
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
29155
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
29156
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
29157
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
29158
- "organizations_url": "https://api.github.com/users/octocat/orgs",
29159
- "repos_url": "https://api.github.com/users/octocat/repos",
29160
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
29161
- "received_events_url": "https://api.github.com/users/octocat/received_events",
29162
- "type": "User",
29163
- "site_admin": false
29164
- },
29165
- "open_issues": 4,
29166
- "closed_issues": 8,
29167
- "created_at": "2011-04-10T20:09:31Z",
29168
- "updated_at": "2014-03-03T18:58:10Z",
29169
- "closed_at": "2013-02-12T13:22:01Z",
29170
- "due_on": "2012-10-09T23:39:01Z"
29171
- },
29172
- "active_lock_reason": "too heated",
29173
- "created_at": "2011-01-26T19:01:12Z",
29174
- "updated_at": "2011-01-26T19:01:12Z",
29175
- "closed_at": "2011-01-26T19:01:12Z",
29176
- "merged_at": "2011-01-26T19:01:12Z",
29177
- "merge_commit_sha": "e5bd3914e2e596debea16f433f57875b5b90bcd6",
29178
- "assignee": {
29179
- "login": "octocat",
29180
- "id": 1,
29181
- "node_id": "MDQ6VXNlcjE=",
29182
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
29183
- "gravatar_id": "",
29184
- "url": "https://api.github.com/users/octocat",
29185
- "html_url": "https://github.com/octocat",
29186
- "followers_url": "https://api.github.com/users/octocat/followers",
29187
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
29188
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
29189
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
29190
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
29191
- "organizations_url": "https://api.github.com/users/octocat/orgs",
29192
- "repos_url": "https://api.github.com/users/octocat/repos",
29193
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
29194
- "received_events_url": "https://api.github.com/users/octocat/received_events",
29195
- "type": "User",
29196
- "site_admin": false
29197
- },
29198
- "assignees": [
29199
- {
29200
- "login": "octocat",
29201
- "id": 1,
29202
- "node_id": "MDQ6VXNlcjE=",
29203
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
29204
- "gravatar_id": "",
29205
- "url": "https://api.github.com/users/octocat",
29206
- "html_url": "https://github.com/octocat",
29207
- "followers_url": "https://api.github.com/users/octocat/followers",
29208
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
29209
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
29210
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
29211
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
29212
- "organizations_url": "https://api.github.com/users/octocat/orgs",
29213
- "repos_url": "https://api.github.com/users/octocat/repos",
29214
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
29215
- "received_events_url": "https://api.github.com/users/octocat/received_events",
29216
- "type": "User",
29217
- "site_admin": false
29218
- },
29219
- {
29220
- "login": "hubot",
29221
- "id": 1,
29222
- "node_id": "MDQ6VXNlcjE=",
29223
- "avatar_url": "https://github.com/images/error/hubot_happy.gif",
29224
- "gravatar_id": "",
29225
- "url": "https://api.github.com/users/hubot",
29226
- "html_url": "https://github.com/hubot",
29227
- "followers_url": "https://api.github.com/users/hubot/followers",
29228
- "following_url": "https://api.github.com/users/hubot/following{/other_user}",
29229
- "gists_url": "https://api.github.com/users/hubot/gists{/gist_id}",
29230
- "starred_url": "https://api.github.com/users/hubot/starred{/owner}{/repo}",
29231
- "subscriptions_url": "https://api.github.com/users/hubot/subscriptions",
29232
- "organizations_url": "https://api.github.com/users/hubot/orgs",
29233
- "repos_url": "https://api.github.com/users/hubot/repos",
29234
- "events_url": "https://api.github.com/users/hubot/events{/privacy}",
29235
- "received_events_url": "https://api.github.com/users/hubot/received_events",
29236
- "type": "User",
29237
- "site_admin": true
29238
- }
29239
- ],
29240
- "requested_reviewers": [
29241
- {
29242
- "login": "octocat",
29243
- "id": 1,
29244
- "node_id": "MDQ6VXNlcjE=",
29245
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
29246
- "gravatar_id": "",
29247
- "url": "https://api.github.com/users/octocat",
29248
- "html_url": "https://github.com/octocat",
29249
- "followers_url": "https://api.github.com/users/octocat/followers",
29250
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
29251
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
29252
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
29253
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
29254
- "organizations_url": "https://api.github.com/users/octocat/orgs",
29255
- "repos_url": "https://api.github.com/users/octocat/repos",
29256
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
29257
- "received_events_url": "https://api.github.com/users/octocat/received_events",
29258
- "type": "User",
29259
- "site_admin": false
29260
- },
29261
- {
29262
- "login": "hubot",
29263
- "id": 1,
29264
- "node_id": "MDQ6VXNlcjE=",
29265
- "avatar_url": "https://github.com/images/error/hubot_happy.gif",
29266
- "gravatar_id": "",
29267
- "url": "https://api.github.com/users/hubot",
29268
- "html_url": "https://github.com/hubot",
29269
- "followers_url": "https://api.github.com/users/hubot/followers",
29270
- "following_url": "https://api.github.com/users/hubot/following{/other_user}",
29271
- "gists_url": "https://api.github.com/users/hubot/gists{/gist_id}",
29272
- "starred_url": "https://api.github.com/users/hubot/starred{/owner}{/repo}",
29273
- "subscriptions_url": "https://api.github.com/users/hubot/subscriptions",
29274
- "organizations_url": "https://api.github.com/users/hubot/orgs",
29275
- "repos_url": "https://api.github.com/users/hubot/repos",
29276
- "events_url": "https://api.github.com/users/hubot/events{/privacy}",
29277
- "received_events_url": "https://api.github.com/users/hubot/received_events",
29278
- "type": "User",
29279
- "site_admin": true
29280
- },
29281
- {
29282
- "login": "other_user",
29283
- "id": 1,
29284
- "node_id": "MDQ6VXNlcjE=",
29285
- "avatar_url": "https://github.com/images/error/other_user_happy.gif",
29286
- "gravatar_id": "",
29287
- "url": "https://api.github.com/users/other_user",
29288
- "html_url": "https://github.com/other_user",
29289
- "followers_url": "https://api.github.com/users/other_user/followers",
29290
- "following_url": "https://api.github.com/users/other_user/following{/other_user}",
29291
- "gists_url": "https://api.github.com/users/other_user/gists{/gist_id}",
29292
- "starred_url": "https://api.github.com/users/other_user/starred{/owner}{/repo}",
29293
- "subscriptions_url": "https://api.github.com/users/other_user/subscriptions",
29294
- "organizations_url": "https://api.github.com/users/other_user/orgs",
29295
- "repos_url": "https://api.github.com/users/other_user/repos",
29296
- "events_url": "https://api.github.com/users/other_user/events{/privacy}",
29297
- "received_events_url": "https://api.github.com/users/other_user/received_events",
29298
- "type": "User",
29299
- "site_admin": false
29300
- }
29301
- ],
29302
- "requested_teams": [
29303
- {
29304
- "id": 1,
29305
- "node_id": "MDQ6VGVhbTE=",
29306
- "url": "https://api.github.com/teams/1",
29307
- "html_url": "https://github.com/orgs/github/teams/justice-league",
29308
- "name": "Justice League",
29309
- "slug": "justice-league",
29310
- "description": "A great team.",
29311
- "privacy": "closed",
29312
- "permission": "admin",
29313
- "members_url": "https://api.github.com/teams/1/members{/member}",
29314
- "repositories_url": "https://api.github.com/teams/1/repos",
29315
- "parent": null
29316
- }
29317
- ],
29318
- "head": {
29319
- "label": "octocat:new-topic",
29320
- "ref": "new-topic",
29321
- "sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e",
29322
- "user": {
29323
- "login": "octocat",
29324
- "id": 1,
29325
- "node_id": "MDQ6VXNlcjE=",
29326
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
29327
- "gravatar_id": "",
29328
- "url": "https://api.github.com/users/octocat",
29329
- "html_url": "https://github.com/octocat",
29330
- "followers_url": "https://api.github.com/users/octocat/followers",
29331
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
29332
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
29333
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
29334
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
29335
- "organizations_url": "https://api.github.com/users/octocat/orgs",
29336
- "repos_url": "https://api.github.com/users/octocat/repos",
29337
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
29338
- "received_events_url": "https://api.github.com/users/octocat/received_events",
29339
- "type": "User",
29340
- "site_admin": false
29341
- },
29342
- "repo": {
29343
- "id": 1296269,
29344
- "node_id": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5",
29345
- "name": "Hello-World",
29346
- "full_name": "octocat/Hello-World",
29347
- "owner": {
29348
- "login": "octocat",
29349
- "id": 1,
29350
- "node_id": "MDQ6VXNlcjE=",
29351
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
29352
- "gravatar_id": "",
29353
- "url": "https://api.github.com/users/octocat",
29354
- "html_url": "https://github.com/octocat",
29355
- "followers_url": "https://api.github.com/users/octocat/followers",
29356
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
29357
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
29358
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
29359
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
29360
- "organizations_url": "https://api.github.com/users/octocat/orgs",
29361
- "repos_url": "https://api.github.com/users/octocat/repos",
29362
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
29363
- "received_events_url": "https://api.github.com/users/octocat/received_events",
29364
- "type": "User",
29365
- "site_admin": false
29366
- },
29367
- "private": false,
29368
- "html_url": "https://github.com/octocat/Hello-World",
29369
- "description": "This your first repo!",
29370
- "fork": false,
29371
- "url": "https://api.github.com/repos/octocat/Hello-World",
29372
- "archive_url": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}",
29373
- "assignees_url": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}",
29374
- "blobs_url": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}",
29375
- "branches_url": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}",
29376
- "collaborators_url": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}",
29377
- "comments_url": "https://api.github.com/repos/octocat/Hello-World/comments{/number}",
29378
- "commits_url": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}",
29379
- "compare_url": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}",
29380
- "contents_url": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}",
29381
- "contributors_url": "https://api.github.com/repos/octocat/Hello-World/contributors",
29382
- "deployments_url": "https://api.github.com/repos/octocat/Hello-World/deployments",
29383
- "downloads_url": "https://api.github.com/repos/octocat/Hello-World/downloads",
29384
- "events_url": "https://api.github.com/repos/octocat/Hello-World/events",
29385
- "forks_url": "https://api.github.com/repos/octocat/Hello-World/forks",
29386
- "git_commits_url": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}",
29387
- "git_refs_url": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}",
29388
- "git_tags_url": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}",
29389
- "git_url": "git:github.com/octocat/Hello-World.git",
29390
- "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}",
29391
- "issue_events_url": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}",
29392
- "issues_url": "https://api.github.com/repos/octocat/Hello-World/issues{/number}",
29393
- "keys_url": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}",
29394
- "labels_url": "https://api.github.com/repos/octocat/Hello-World/labels{/name}",
29395
- "languages_url": "https://api.github.com/repos/octocat/Hello-World/languages",
29396
- "merges_url": "https://api.github.com/repos/octocat/Hello-World/merges",
29397
- "milestones_url": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}",
29398
- "notifications_url": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}",
29399
- "pulls_url": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}",
29400
- "releases_url": "https://api.github.com/repos/octocat/Hello-World/releases{/id}",
29401
- "ssh_url": "git@github.com:octocat/Hello-World.git",
29402
- "stargazers_url": "https://api.github.com/repos/octocat/Hello-World/stargazers",
29403
- "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}",
29404
- "subscribers_url": "https://api.github.com/repos/octocat/Hello-World/subscribers",
29405
- "subscription_url": "https://api.github.com/repos/octocat/Hello-World/subscription",
29406
- "tags_url": "https://api.github.com/repos/octocat/Hello-World/tags",
29407
- "teams_url": "https://api.github.com/repos/octocat/Hello-World/teams",
29408
- "trees_url": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}",
29409
- "clone_url": "https://github.com/octocat/Hello-World.git",
29410
- "mirror_url": "git:git.example.com/octocat/Hello-World",
29411
- "hooks_url": "https://api.github.com/repos/octocat/Hello-World/hooks",
29412
- "svn_url": "https://svn.github.com/octocat/Hello-World",
29413
- "homepage": "https://github.com",
29414
- "language": null,
29415
- "forks_count": 9,
29416
- "stargazers_count": 80,
29417
- "watchers_count": 80,
29418
- "size": 108,
29419
- "default_branch": "master",
29420
- "open_issues_count": 0,
29421
- "is_template": true,
29422
- "topics": [
29423
- "octocat",
29424
- "atom",
29425
- "electron",
29426
- "api"
29427
- ],
29428
- "has_issues": true,
29429
- "has_projects": true,
29430
- "has_wiki": true,
29431
- "has_pages": false,
29432
- "has_downloads": true,
29433
- "archived": false,
29434
- "disabled": false,
29435
- "visibility": "public",
29436
- "pushed_at": "2011-01-26T19:06:43Z",
29437
- "created_at": "2011-01-26T19:01:12Z",
29438
- "updated_at": "2011-01-26T19:14:43Z",
29439
- "permissions": {
29440
- "admin": false,
29441
- "push": false,
29442
- "pull": true
29443
- },
29444
- "allow_rebase_merge": true,
29445
- "template_repository": null,
29446
- "temp_clone_token": "ABTLWHOULUVAXGTRYU7OC2876QJ2O",
29447
- "allow_squash_merge": true,
29448
- "allow_auto_merge": false,
29449
- "delete_branch_on_merge": true,
29450
- "allow_merge_commit": true,
29451
- "subscribers_count": 42,
29452
- "network_count": 0,
29453
- "license": {
29454
- "key": "mit",
29455
- "name": "MIT License",
29456
- "url": "https://api.github.com/licenses/mit",
29457
- "spdx_id": "MIT",
29458
- "node_id": "MDc6TGljZW5zZW1pdA==",
29459
- "html_url": "https://github.com/licenses/mit"
29460
- },
29461
- "forks": 1,
29462
- "open_issues": 1,
29463
- "watchers": 1
29464
- }
29465
- },
29466
- "base": {
29467
- "label": "octocat:master",
29468
- "ref": "master",
29469
- "sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e",
29470
- "user": {
29471
- "login": "octocat",
29472
- "id": 1,
29473
- "node_id": "MDQ6VXNlcjE=",
29474
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
29475
- "gravatar_id": "",
29476
- "url": "https://api.github.com/users/octocat",
29477
- "html_url": "https://github.com/octocat",
29478
- "followers_url": "https://api.github.com/users/octocat/followers",
29479
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
29480
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
29481
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
29482
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
29483
- "organizations_url": "https://api.github.com/users/octocat/orgs",
29484
- "repos_url": "https://api.github.com/users/octocat/repos",
29485
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
29486
- "received_events_url": "https://api.github.com/users/octocat/received_events",
29487
- "type": "User",
29488
- "site_admin": false
29489
- },
29490
- "repo": {
29491
- "id": 1296269,
29492
- "node_id": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5",
29493
- "name": "Hello-World",
29494
- "full_name": "octocat/Hello-World",
29495
- "owner": {
29496
- "login": "octocat",
29497
- "id": 1,
29498
- "node_id": "MDQ6VXNlcjE=",
29499
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
29500
- "gravatar_id": "",
29501
- "url": "https://api.github.com/users/octocat",
29502
- "html_url": "https://github.com/octocat",
29503
- "followers_url": "https://api.github.com/users/octocat/followers",
29504
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
29505
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
29506
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
29507
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
29508
- "organizations_url": "https://api.github.com/users/octocat/orgs",
29509
- "repos_url": "https://api.github.com/users/octocat/repos",
29510
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
29511
- "received_events_url": "https://api.github.com/users/octocat/received_events",
29512
- "type": "User",
29513
- "site_admin": false
29514
- },
29515
- "private": false,
29516
- "html_url": "https://github.com/octocat/Hello-World",
29517
- "description": "This your first repo!",
29518
- "fork": false,
29519
- "url": "https://api.github.com/repos/octocat/Hello-World",
29520
- "archive_url": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}",
29521
- "assignees_url": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}",
29522
- "blobs_url": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}",
29523
- "branches_url": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}",
29524
- "collaborators_url": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}",
29525
- "comments_url": "https://api.github.com/repos/octocat/Hello-World/comments{/number}",
29526
- "commits_url": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}",
29527
- "compare_url": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}",
29528
- "contents_url": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}",
29529
- "contributors_url": "https://api.github.com/repos/octocat/Hello-World/contributors",
29530
- "deployments_url": "https://api.github.com/repos/octocat/Hello-World/deployments",
29531
- "downloads_url": "https://api.github.com/repos/octocat/Hello-World/downloads",
29532
- "events_url": "https://api.github.com/repos/octocat/Hello-World/events",
29533
- "forks_url": "https://api.github.com/repos/octocat/Hello-World/forks",
29534
- "git_commits_url": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}",
29535
- "git_refs_url": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}",
29536
- "git_tags_url": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}",
29537
- "git_url": "git:github.com/octocat/Hello-World.git",
29538
- "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}",
29539
- "issue_events_url": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}",
29540
- "issues_url": "https://api.github.com/repos/octocat/Hello-World/issues{/number}",
29541
- "keys_url": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}",
29542
- "labels_url": "https://api.github.com/repos/octocat/Hello-World/labels{/name}",
29543
- "languages_url": "https://api.github.com/repos/octocat/Hello-World/languages",
29544
- "merges_url": "https://api.github.com/repos/octocat/Hello-World/merges",
29545
- "milestones_url": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}",
29546
- "notifications_url": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}",
29547
- "pulls_url": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}",
29548
- "releases_url": "https://api.github.com/repos/octocat/Hello-World/releases{/id}",
29549
- "ssh_url": "git@github.com:octocat/Hello-World.git",
29550
- "stargazers_url": "https://api.github.com/repos/octocat/Hello-World/stargazers",
29551
- "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}",
29552
- "subscribers_url": "https://api.github.com/repos/octocat/Hello-World/subscribers",
29553
- "subscription_url": "https://api.github.com/repos/octocat/Hello-World/subscription",
29554
- "tags_url": "https://api.github.com/repos/octocat/Hello-World/tags",
29555
- "teams_url": "https://api.github.com/repos/octocat/Hello-World/teams",
29556
- "trees_url": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}",
29557
- "clone_url": "https://github.com/octocat/Hello-World.git",
29558
- "mirror_url": "git:git.example.com/octocat/Hello-World",
29559
- "hooks_url": "https://api.github.com/repos/octocat/Hello-World/hooks",
29560
- "svn_url": "https://svn.github.com/octocat/Hello-World",
29561
- "homepage": "https://github.com",
29562
- "language": null,
29563
- "forks_count": 9,
29564
- "stargazers_count": 80,
29565
- "watchers_count": 80,
29566
- "size": 108,
29567
- "default_branch": "master",
29568
- "open_issues_count": 0,
29569
- "is_template": true,
29570
- "topics": [
29571
- "octocat",
29572
- "atom",
29573
- "electron",
29574
- "api"
29575
- ],
29576
- "has_issues": true,
29577
- "has_projects": true,
29578
- "has_wiki": true,
29579
- "has_pages": false,
29580
- "has_downloads": true,
29581
- "archived": false,
29582
- "disabled": false,
29583
- "visibility": "public",
29584
- "pushed_at": "2011-01-26T19:06:43Z",
29585
- "created_at": "2011-01-26T19:01:12Z",
29586
- "updated_at": "2011-01-26T19:14:43Z",
29587
- "permissions": {
29588
- "admin": false,
29589
- "push": false,
29590
- "pull": true
29591
- },
29592
- "allow_rebase_merge": true,
29593
- "template_repository": null,
29594
- "temp_clone_token": "ABTLWHOULUVAXGTRYU7OC2876QJ2O",
29595
- "allow_squash_merge": true,
29596
- "allow_auto_merge": false,
29597
- "delete_branch_on_merge": true,
29598
- "allow_merge_commit": true,
29599
- "subscribers_count": 42,
29600
- "network_count": 0,
29601
- "license": {
29602
- "key": "mit",
29603
- "name": "MIT License",
29604
- "url": "https://api.github.com/licenses/mit",
29605
- "spdx_id": "MIT",
29606
- "node_id": "MDc6TGljZW5zZW1pdA==",
29607
- "html_url": "https://api.github.com/licenses/mit"
29608
- },
29609
- "forks": 1,
29610
- "open_issues": 1,
29611
- "watchers": 1
29612
- }
29613
- },
29614
- "_links": {
29615
- "self": {
29616
- "href": "https://api.github.com/repos/octocat/Hello-World/pulls/1347"
29617
- },
29618
- "html": {
29619
- "href": "https://github.com/octocat/Hello-World/pull/1347"
29620
- },
29621
- "issue": {
29622
- "href": "https://api.github.com/repos/octocat/Hello-World/issues/1347"
29623
- },
29624
- "comments": {
29625
- "href": "https://api.github.com/repos/octocat/Hello-World/issues/1347/comments"
29626
- },
29627
- "review_comments": {
29628
- "href": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments"
29629
- },
29630
- "review_comment": {
29631
- "href": "https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}"
29632
- },
29633
- "commits": {
29634
- "href": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits"
29635
- },
29636
- "statuses": {
29637
- "href": "https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e"
29638
- }
29639
- },
29640
- "author_association": "OWNER",
29641
- "draft": false
29642
- }
29643
- },
29644
28971
  "secret-scanning-alert-list": {
29645
28972
  "value": [
29646
28973
  {