@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": {
@@ -6036,120 +6036,6 @@
6036
6036
  }
6037
6037
  }
6038
6038
  },
6039
- "/repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers": {
6040
- "post": {
6041
- "summary": "Request reviewers for a pull request",
6042
- "description": "This endpoint triggers [notifications](https://docs.github.com/enterprise-server@3.6/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.6/rest/overview/resources-in-the-rest-api#secondary-rate-limits)\" and \"[Dealing with secondary rate limits](https://docs.github.com/enterprise-server@3.6/rest/guides/best-practices-for-integrators#dealing-with-secondary-rate-limits)\" for details.",
6043
- "tags": [
6044
- "pulls"
6045
- ],
6046
- "operationId": "pulls/request-reviewers",
6047
- "externalDocs": {
6048
- "description": "API method documentation",
6049
- "url": "https://docs.github.com/enterprise-server@3.6/rest/reference/pulls#request-reviewers-for-a-pull-request"
6050
- },
6051
- "parameters": [
6052
- {
6053
- "$ref": "#/components/parameters/owner"
6054
- },
6055
- {
6056
- "$ref": "#/components/parameters/repo"
6057
- },
6058
- {
6059
- "$ref": "#/components/parameters/pull-number"
6060
- }
6061
- ],
6062
- "requestBody": {
6063
- "required": false,
6064
- "content": {
6065
- "application/json": {
6066
- "schema": {
6067
- "type": "object",
6068
- "properties": {
6069
- "reviewers": {
6070
- "type": "array",
6071
- "description": "An array of user `login`s that will be requested.",
6072
- "items": {
6073
- "type": "string"
6074
- }
6075
- },
6076
- "team_reviewers": {
6077
- "type": "array",
6078
- "description": "An array of team `slug`s that will be requested.",
6079
- "items": {
6080
- "type": "string"
6081
- }
6082
- }
6083
- },
6084
- "anyOf": [
6085
- {
6086
- "required": [
6087
- "reviewers"
6088
- ]
6089
- },
6090
- {
6091
- "required": [
6092
- "team_reviewers"
6093
- ]
6094
- }
6095
- ]
6096
- },
6097
- "examples": {
6098
- "default": {
6099
- "value": {
6100
- "reviewers": [
6101
- "octocat",
6102
- "hubot",
6103
- "other_user"
6104
- ],
6105
- "team_reviewers": [
6106
- "justice-league"
6107
- ]
6108
- }
6109
- }
6110
- }
6111
- }
6112
- }
6113
- },
6114
- "responses": {
6115
- "201": {
6116
- "description": "Response",
6117
- "content": {
6118
- "application/json": {
6119
- "schema": {
6120
- "$ref": "#/components/schemas/pull-request-simple"
6121
- },
6122
- "examples": {
6123
- "default": {
6124
- "$ref": "#/components/examples/pull-request-review-request"
6125
- }
6126
- }
6127
- }
6128
- }
6129
- },
6130
- "403": {
6131
- "$ref": "#/components/responses/forbidden"
6132
- },
6133
- "422": {
6134
- "description": "Unprocessable Entity if user is not a collaborator"
6135
- }
6136
- },
6137
- "x-github": {
6138
- "triggersNotification": true,
6139
- "githubCloudOnly": false,
6140
- "enabledForGitHubApps": true,
6141
- "category": "pulls",
6142
- "subcategory": "review-requests"
6143
- },
6144
- "x-octokit": {
6145
- "diff": {
6146
- "ghes-3.7": {
6147
- "type": "changed"
6148
- }
6149
- }
6150
- }
6151
- }
6152
- },
6153
6039
  "/repos/{owner}/{repo}/secret-scanning/alerts": {
6154
6040
  "get": {
6155
6041
  "summary": "List secret scanning alerts for a repository",
@@ -9097,15 +8983,6 @@
9097
8983
  "type": "integer"
9098
8984
  }
9099
8985
  },
9100
- "pull-number": {
9101
- "name": "pull_number",
9102
- "description": "The number that identifies the pull request.",
9103
- "in": "path",
9104
- "required": true,
9105
- "schema": {
9106
- "type": "integer"
9107
- }
9108
- },
9109
8986
  "since-repo": {
9110
8987
  "name": "since",
9111
8988
  "description": "A repository ID. Only return repositories with an ID greater than this ID.",
@@ -24964,565 +24841,6 @@
24964
24841
  "read_only": true
24965
24842
  }
24966
24843
  },
24967
- "pull-request-review-request": {
24968
- "value": {
24969
- "url": "https://api.github.com/repos/octocat/Hello-World/pulls/1347",
24970
- "id": 1,
24971
- "node_id": "MDExOlB1bGxSZXF1ZXN0MQ==",
24972
- "html_url": "https://github.com/octocat/Hello-World/pull/1347",
24973
- "diff_url": "https://github.com/octocat/Hello-World/pull/1347.diff",
24974
- "patch_url": "https://github.com/octocat/Hello-World/pull/1347.patch",
24975
- "issue_url": "https://api.github.com/repos/octocat/Hello-World/issues/1347",
24976
- "commits_url": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits",
24977
- "review_comments_url": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments",
24978
- "review_comment_url": "https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}",
24979
- "comments_url": "https://api.github.com/repos/octocat/Hello-World/issues/1347/comments",
24980
- "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e",
24981
- "number": 1347,
24982
- "state": "open",
24983
- "locked": true,
24984
- "title": "Amazing new feature",
24985
- "user": {
24986
- "login": "octocat",
24987
- "id": 1,
24988
- "node_id": "MDQ6VXNlcjE=",
24989
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
24990
- "gravatar_id": "",
24991
- "url": "https://api.github.com/users/octocat",
24992
- "html_url": "https://github.com/octocat",
24993
- "followers_url": "https://api.github.com/users/octocat/followers",
24994
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
24995
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
24996
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
24997
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
24998
- "organizations_url": "https://api.github.com/users/octocat/orgs",
24999
- "repos_url": "https://api.github.com/users/octocat/repos",
25000
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
25001
- "received_events_url": "https://api.github.com/users/octocat/received_events",
25002
- "type": "User",
25003
- "site_admin": false
25004
- },
25005
- "body": "Please pull these awesome changes in!",
25006
- "labels": [
25007
- {
25008
- "id": 208045946,
25009
- "node_id": "MDU6TGFiZWwyMDgwNDU5NDY=",
25010
- "url": "https://api.github.com/repos/octocat/Hello-World/labels/bug",
25011
- "name": "bug",
25012
- "description": "Something isn't working",
25013
- "color": "f29513",
25014
- "default": true
25015
- }
25016
- ],
25017
- "milestone": {
25018
- "url": "https://api.github.com/repos/octocat/Hello-World/milestones/1",
25019
- "html_url": "https://github.com/octocat/Hello-World/milestones/v1.0",
25020
- "labels_url": "https://api.github.com/repos/octocat/Hello-World/milestones/1/labels",
25021
- "id": 1002604,
25022
- "node_id": "MDk6TWlsZXN0b25lMTAwMjYwNA==",
25023
- "number": 1,
25024
- "state": "open",
25025
- "title": "v1.0",
25026
- "description": "Tracking milestone for version 1.0",
25027
- "creator": {
25028
- "login": "octocat",
25029
- "id": 1,
25030
- "node_id": "MDQ6VXNlcjE=",
25031
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
25032
- "gravatar_id": "",
25033
- "url": "https://api.github.com/users/octocat",
25034
- "html_url": "https://github.com/octocat",
25035
- "followers_url": "https://api.github.com/users/octocat/followers",
25036
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
25037
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
25038
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
25039
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
25040
- "organizations_url": "https://api.github.com/users/octocat/orgs",
25041
- "repos_url": "https://api.github.com/users/octocat/repos",
25042
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
25043
- "received_events_url": "https://api.github.com/users/octocat/received_events",
25044
- "type": "User",
25045
- "site_admin": false
25046
- },
25047
- "open_issues": 4,
25048
- "closed_issues": 8,
25049
- "created_at": "2011-04-10T20:09:31Z",
25050
- "updated_at": "2014-03-03T18:58:10Z",
25051
- "closed_at": "2013-02-12T13:22:01Z",
25052
- "due_on": "2012-10-09T23:39:01Z"
25053
- },
25054
- "active_lock_reason": "too heated",
25055
- "created_at": "2011-01-26T19:01:12Z",
25056
- "updated_at": "2011-01-26T19:01:12Z",
25057
- "closed_at": "2011-01-26T19:01:12Z",
25058
- "merged_at": "2011-01-26T19:01:12Z",
25059
- "merge_commit_sha": "e5bd3914e2e596debea16f433f57875b5b90bcd6",
25060
- "assignee": {
25061
- "login": "octocat",
25062
- "id": 1,
25063
- "node_id": "MDQ6VXNlcjE=",
25064
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
25065
- "gravatar_id": "",
25066
- "url": "https://api.github.com/users/octocat",
25067
- "html_url": "https://github.com/octocat",
25068
- "followers_url": "https://api.github.com/users/octocat/followers",
25069
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
25070
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
25071
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
25072
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
25073
- "organizations_url": "https://api.github.com/users/octocat/orgs",
25074
- "repos_url": "https://api.github.com/users/octocat/repos",
25075
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
25076
- "received_events_url": "https://api.github.com/users/octocat/received_events",
25077
- "type": "User",
25078
- "site_admin": false
25079
- },
25080
- "assignees": [
25081
- {
25082
- "login": "octocat",
25083
- "id": 1,
25084
- "node_id": "MDQ6VXNlcjE=",
25085
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
25086
- "gravatar_id": "",
25087
- "url": "https://api.github.com/users/octocat",
25088
- "html_url": "https://github.com/octocat",
25089
- "followers_url": "https://api.github.com/users/octocat/followers",
25090
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
25091
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
25092
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
25093
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
25094
- "organizations_url": "https://api.github.com/users/octocat/orgs",
25095
- "repos_url": "https://api.github.com/users/octocat/repos",
25096
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
25097
- "received_events_url": "https://api.github.com/users/octocat/received_events",
25098
- "type": "User",
25099
- "site_admin": false
25100
- },
25101
- {
25102
- "login": "hubot",
25103
- "id": 1,
25104
- "node_id": "MDQ6VXNlcjE=",
25105
- "avatar_url": "https://github.com/images/error/hubot_happy.gif",
25106
- "gravatar_id": "",
25107
- "url": "https://api.github.com/users/hubot",
25108
- "html_url": "https://github.com/hubot",
25109
- "followers_url": "https://api.github.com/users/hubot/followers",
25110
- "following_url": "https://api.github.com/users/hubot/following{/other_user}",
25111
- "gists_url": "https://api.github.com/users/hubot/gists{/gist_id}",
25112
- "starred_url": "https://api.github.com/users/hubot/starred{/owner}{/repo}",
25113
- "subscriptions_url": "https://api.github.com/users/hubot/subscriptions",
25114
- "organizations_url": "https://api.github.com/users/hubot/orgs",
25115
- "repos_url": "https://api.github.com/users/hubot/repos",
25116
- "events_url": "https://api.github.com/users/hubot/events{/privacy}",
25117
- "received_events_url": "https://api.github.com/users/hubot/received_events",
25118
- "type": "User",
25119
- "site_admin": true
25120
- }
25121
- ],
25122
- "requested_reviewers": [
25123
- {
25124
- "login": "octocat",
25125
- "id": 1,
25126
- "node_id": "MDQ6VXNlcjE=",
25127
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
25128
- "gravatar_id": "",
25129
- "url": "https://api.github.com/users/octocat",
25130
- "html_url": "https://github.com/octocat",
25131
- "followers_url": "https://api.github.com/users/octocat/followers",
25132
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
25133
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
25134
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
25135
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
25136
- "organizations_url": "https://api.github.com/users/octocat/orgs",
25137
- "repos_url": "https://api.github.com/users/octocat/repos",
25138
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
25139
- "received_events_url": "https://api.github.com/users/octocat/received_events",
25140
- "type": "User",
25141
- "site_admin": false
25142
- },
25143
- {
25144
- "login": "hubot",
25145
- "id": 1,
25146
- "node_id": "MDQ6VXNlcjE=",
25147
- "avatar_url": "https://github.com/images/error/hubot_happy.gif",
25148
- "gravatar_id": "",
25149
- "url": "https://api.github.com/users/hubot",
25150
- "html_url": "https://github.com/hubot",
25151
- "followers_url": "https://api.github.com/users/hubot/followers",
25152
- "following_url": "https://api.github.com/users/hubot/following{/other_user}",
25153
- "gists_url": "https://api.github.com/users/hubot/gists{/gist_id}",
25154
- "starred_url": "https://api.github.com/users/hubot/starred{/owner}{/repo}",
25155
- "subscriptions_url": "https://api.github.com/users/hubot/subscriptions",
25156
- "organizations_url": "https://api.github.com/users/hubot/orgs",
25157
- "repos_url": "https://api.github.com/users/hubot/repos",
25158
- "events_url": "https://api.github.com/users/hubot/events{/privacy}",
25159
- "received_events_url": "https://api.github.com/users/hubot/received_events",
25160
- "type": "User",
25161
- "site_admin": true
25162
- },
25163
- {
25164
- "login": "other_user",
25165
- "id": 1,
25166
- "node_id": "MDQ6VXNlcjE=",
25167
- "avatar_url": "https://github.com/images/error/other_user_happy.gif",
25168
- "gravatar_id": "",
25169
- "url": "https://api.github.com/users/other_user",
25170
- "html_url": "https://github.com/other_user",
25171
- "followers_url": "https://api.github.com/users/other_user/followers",
25172
- "following_url": "https://api.github.com/users/other_user/following{/other_user}",
25173
- "gists_url": "https://api.github.com/users/other_user/gists{/gist_id}",
25174
- "starred_url": "https://api.github.com/users/other_user/starred{/owner}{/repo}",
25175
- "subscriptions_url": "https://api.github.com/users/other_user/subscriptions",
25176
- "organizations_url": "https://api.github.com/users/other_user/orgs",
25177
- "repos_url": "https://api.github.com/users/other_user/repos",
25178
- "events_url": "https://api.github.com/users/other_user/events{/privacy}",
25179
- "received_events_url": "https://api.github.com/users/other_user/received_events",
25180
- "type": "User",
25181
- "site_admin": false
25182
- }
25183
- ],
25184
- "requested_teams": [
25185
- {
25186
- "id": 1,
25187
- "node_id": "MDQ6VGVhbTE=",
25188
- "url": "https://api.github.com/teams/1",
25189
- "html_url": "https://github.com/orgs/github/teams/justice-league",
25190
- "name": "Justice League",
25191
- "slug": "justice-league",
25192
- "description": "A great team.",
25193
- "privacy": "closed",
25194
- "permission": "admin",
25195
- "members_url": "https://api.github.com/teams/1/members{/member}",
25196
- "repositories_url": "https://api.github.com/teams/1/repos",
25197
- "parent": null
25198
- }
25199
- ],
25200
- "head": {
25201
- "label": "octocat:new-topic",
25202
- "ref": "new-topic",
25203
- "sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e",
25204
- "user": {
25205
- "login": "octocat",
25206
- "id": 1,
25207
- "node_id": "MDQ6VXNlcjE=",
25208
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
25209
- "gravatar_id": "",
25210
- "url": "https://api.github.com/users/octocat",
25211
- "html_url": "https://github.com/octocat",
25212
- "followers_url": "https://api.github.com/users/octocat/followers",
25213
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
25214
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
25215
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
25216
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
25217
- "organizations_url": "https://api.github.com/users/octocat/orgs",
25218
- "repos_url": "https://api.github.com/users/octocat/repos",
25219
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
25220
- "received_events_url": "https://api.github.com/users/octocat/received_events",
25221
- "type": "User",
25222
- "site_admin": false
25223
- },
25224
- "repo": {
25225
- "id": 1296269,
25226
- "node_id": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5",
25227
- "name": "Hello-World",
25228
- "full_name": "octocat/Hello-World",
25229
- "owner": {
25230
- "login": "octocat",
25231
- "id": 1,
25232
- "node_id": "MDQ6VXNlcjE=",
25233
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
25234
- "gravatar_id": "",
25235
- "url": "https://api.github.com/users/octocat",
25236
- "html_url": "https://github.com/octocat",
25237
- "followers_url": "https://api.github.com/users/octocat/followers",
25238
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
25239
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
25240
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
25241
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
25242
- "organizations_url": "https://api.github.com/users/octocat/orgs",
25243
- "repos_url": "https://api.github.com/users/octocat/repos",
25244
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
25245
- "received_events_url": "https://api.github.com/users/octocat/received_events",
25246
- "type": "User",
25247
- "site_admin": false
25248
- },
25249
- "private": false,
25250
- "html_url": "https://github.com/octocat/Hello-World",
25251
- "description": "This your first repo!",
25252
- "fork": false,
25253
- "url": "https://api.github.com/repos/octocat/Hello-World",
25254
- "archive_url": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}",
25255
- "assignees_url": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}",
25256
- "blobs_url": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}",
25257
- "branches_url": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}",
25258
- "collaborators_url": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}",
25259
- "comments_url": "https://api.github.com/repos/octocat/Hello-World/comments{/number}",
25260
- "commits_url": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}",
25261
- "compare_url": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}",
25262
- "contents_url": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}",
25263
- "contributors_url": "https://api.github.com/repos/octocat/Hello-World/contributors",
25264
- "deployments_url": "https://api.github.com/repos/octocat/Hello-World/deployments",
25265
- "downloads_url": "https://api.github.com/repos/octocat/Hello-World/downloads",
25266
- "events_url": "https://api.github.com/repos/octocat/Hello-World/events",
25267
- "forks_url": "https://api.github.com/repos/octocat/Hello-World/forks",
25268
- "git_commits_url": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}",
25269
- "git_refs_url": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}",
25270
- "git_tags_url": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}",
25271
- "git_url": "git:github.com/octocat/Hello-World.git",
25272
- "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}",
25273
- "issue_events_url": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}",
25274
- "issues_url": "https://api.github.com/repos/octocat/Hello-World/issues{/number}",
25275
- "keys_url": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}",
25276
- "labels_url": "https://api.github.com/repos/octocat/Hello-World/labels{/name}",
25277
- "languages_url": "https://api.github.com/repos/octocat/Hello-World/languages",
25278
- "merges_url": "https://api.github.com/repos/octocat/Hello-World/merges",
25279
- "milestones_url": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}",
25280
- "notifications_url": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}",
25281
- "pulls_url": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}",
25282
- "releases_url": "https://api.github.com/repos/octocat/Hello-World/releases{/id}",
25283
- "ssh_url": "git@github.com:octocat/Hello-World.git",
25284
- "stargazers_url": "https://api.github.com/repos/octocat/Hello-World/stargazers",
25285
- "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}",
25286
- "subscribers_url": "https://api.github.com/repos/octocat/Hello-World/subscribers",
25287
- "subscription_url": "https://api.github.com/repos/octocat/Hello-World/subscription",
25288
- "tags_url": "https://api.github.com/repos/octocat/Hello-World/tags",
25289
- "teams_url": "https://api.github.com/repos/octocat/Hello-World/teams",
25290
- "trees_url": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}",
25291
- "clone_url": "https://github.com/octocat/Hello-World.git",
25292
- "mirror_url": "git:git.example.com/octocat/Hello-World",
25293
- "hooks_url": "https://api.github.com/repos/octocat/Hello-World/hooks",
25294
- "svn_url": "https://svn.github.com/octocat/Hello-World",
25295
- "homepage": "https://github.com",
25296
- "language": null,
25297
- "forks_count": 9,
25298
- "stargazers_count": 80,
25299
- "watchers_count": 80,
25300
- "size": 108,
25301
- "default_branch": "master",
25302
- "open_issues_count": 0,
25303
- "is_template": true,
25304
- "topics": [
25305
- "octocat",
25306
- "atom",
25307
- "electron",
25308
- "api"
25309
- ],
25310
- "has_issues": true,
25311
- "has_projects": true,
25312
- "has_wiki": true,
25313
- "has_pages": false,
25314
- "has_downloads": true,
25315
- "archived": false,
25316
- "disabled": false,
25317
- "visibility": "public",
25318
- "pushed_at": "2011-01-26T19:06:43Z",
25319
- "created_at": "2011-01-26T19:01:12Z",
25320
- "updated_at": "2011-01-26T19:14:43Z",
25321
- "permissions": {
25322
- "admin": false,
25323
- "push": false,
25324
- "pull": true
25325
- },
25326
- "allow_rebase_merge": true,
25327
- "template_repository": null,
25328
- "temp_clone_token": "ABTLWHOULUVAXGTRYU7OC2876QJ2O",
25329
- "allow_squash_merge": true,
25330
- "allow_auto_merge": false,
25331
- "delete_branch_on_merge": true,
25332
- "allow_merge_commit": true,
25333
- "subscribers_count": 42,
25334
- "network_count": 0,
25335
- "license": {
25336
- "key": "mit",
25337
- "name": "MIT License",
25338
- "url": "https://api.github.com/licenses/mit",
25339
- "spdx_id": "MIT",
25340
- "node_id": "MDc6TGljZW5zZW1pdA==",
25341
- "html_url": "https://github.com/licenses/mit"
25342
- },
25343
- "forks": 1,
25344
- "open_issues": 1,
25345
- "watchers": 1
25346
- }
25347
- },
25348
- "base": {
25349
- "label": "octocat:master",
25350
- "ref": "master",
25351
- "sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e",
25352
- "user": {
25353
- "login": "octocat",
25354
- "id": 1,
25355
- "node_id": "MDQ6VXNlcjE=",
25356
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
25357
- "gravatar_id": "",
25358
- "url": "https://api.github.com/users/octocat",
25359
- "html_url": "https://github.com/octocat",
25360
- "followers_url": "https://api.github.com/users/octocat/followers",
25361
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
25362
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
25363
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
25364
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
25365
- "organizations_url": "https://api.github.com/users/octocat/orgs",
25366
- "repos_url": "https://api.github.com/users/octocat/repos",
25367
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
25368
- "received_events_url": "https://api.github.com/users/octocat/received_events",
25369
- "type": "User",
25370
- "site_admin": false
25371
- },
25372
- "repo": {
25373
- "id": 1296269,
25374
- "node_id": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5",
25375
- "name": "Hello-World",
25376
- "full_name": "octocat/Hello-World",
25377
- "owner": {
25378
- "login": "octocat",
25379
- "id": 1,
25380
- "node_id": "MDQ6VXNlcjE=",
25381
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
25382
- "gravatar_id": "",
25383
- "url": "https://api.github.com/users/octocat",
25384
- "html_url": "https://github.com/octocat",
25385
- "followers_url": "https://api.github.com/users/octocat/followers",
25386
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
25387
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
25388
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
25389
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
25390
- "organizations_url": "https://api.github.com/users/octocat/orgs",
25391
- "repos_url": "https://api.github.com/users/octocat/repos",
25392
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
25393
- "received_events_url": "https://api.github.com/users/octocat/received_events",
25394
- "type": "User",
25395
- "site_admin": false
25396
- },
25397
- "private": false,
25398
- "html_url": "https://github.com/octocat/Hello-World",
25399
- "description": "This your first repo!",
25400
- "fork": false,
25401
- "url": "https://api.github.com/repos/octocat/Hello-World",
25402
- "archive_url": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}",
25403
- "assignees_url": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}",
25404
- "blobs_url": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}",
25405
- "branches_url": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}",
25406
- "collaborators_url": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}",
25407
- "comments_url": "https://api.github.com/repos/octocat/Hello-World/comments{/number}",
25408
- "commits_url": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}",
25409
- "compare_url": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}",
25410
- "contents_url": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}",
25411
- "contributors_url": "https://api.github.com/repos/octocat/Hello-World/contributors",
25412
- "deployments_url": "https://api.github.com/repos/octocat/Hello-World/deployments",
25413
- "downloads_url": "https://api.github.com/repos/octocat/Hello-World/downloads",
25414
- "events_url": "https://api.github.com/repos/octocat/Hello-World/events",
25415
- "forks_url": "https://api.github.com/repos/octocat/Hello-World/forks",
25416
- "git_commits_url": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}",
25417
- "git_refs_url": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}",
25418
- "git_tags_url": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}",
25419
- "git_url": "git:github.com/octocat/Hello-World.git",
25420
- "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}",
25421
- "issue_events_url": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}",
25422
- "issues_url": "https://api.github.com/repos/octocat/Hello-World/issues{/number}",
25423
- "keys_url": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}",
25424
- "labels_url": "https://api.github.com/repos/octocat/Hello-World/labels{/name}",
25425
- "languages_url": "https://api.github.com/repos/octocat/Hello-World/languages",
25426
- "merges_url": "https://api.github.com/repos/octocat/Hello-World/merges",
25427
- "milestones_url": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}",
25428
- "notifications_url": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}",
25429
- "pulls_url": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}",
25430
- "releases_url": "https://api.github.com/repos/octocat/Hello-World/releases{/id}",
25431
- "ssh_url": "git@github.com:octocat/Hello-World.git",
25432
- "stargazers_url": "https://api.github.com/repos/octocat/Hello-World/stargazers",
25433
- "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}",
25434
- "subscribers_url": "https://api.github.com/repos/octocat/Hello-World/subscribers",
25435
- "subscription_url": "https://api.github.com/repos/octocat/Hello-World/subscription",
25436
- "tags_url": "https://api.github.com/repos/octocat/Hello-World/tags",
25437
- "teams_url": "https://api.github.com/repos/octocat/Hello-World/teams",
25438
- "trees_url": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}",
25439
- "clone_url": "https://github.com/octocat/Hello-World.git",
25440
- "mirror_url": "git:git.example.com/octocat/Hello-World",
25441
- "hooks_url": "https://api.github.com/repos/octocat/Hello-World/hooks",
25442
- "svn_url": "https://svn.github.com/octocat/Hello-World",
25443
- "homepage": "https://github.com",
25444
- "language": null,
25445
- "forks_count": 9,
25446
- "stargazers_count": 80,
25447
- "watchers_count": 80,
25448
- "size": 108,
25449
- "default_branch": "master",
25450
- "open_issues_count": 0,
25451
- "is_template": true,
25452
- "topics": [
25453
- "octocat",
25454
- "atom",
25455
- "electron",
25456
- "api"
25457
- ],
25458
- "has_issues": true,
25459
- "has_projects": true,
25460
- "has_wiki": true,
25461
- "has_pages": false,
25462
- "has_downloads": true,
25463
- "archived": false,
25464
- "disabled": false,
25465
- "visibility": "public",
25466
- "pushed_at": "2011-01-26T19:06:43Z",
25467
- "created_at": "2011-01-26T19:01:12Z",
25468
- "updated_at": "2011-01-26T19:14:43Z",
25469
- "permissions": {
25470
- "admin": false,
25471
- "push": false,
25472
- "pull": true
25473
- },
25474
- "allow_rebase_merge": true,
25475
- "template_repository": null,
25476
- "temp_clone_token": "ABTLWHOULUVAXGTRYU7OC2876QJ2O",
25477
- "allow_squash_merge": true,
25478
- "allow_auto_merge": false,
25479
- "delete_branch_on_merge": true,
25480
- "allow_merge_commit": true,
25481
- "subscribers_count": 42,
25482
- "network_count": 0,
25483
- "license": {
25484
- "key": "mit",
25485
- "name": "MIT License",
25486
- "url": "https://api.github.com/licenses/mit",
25487
- "spdx_id": "MIT",
25488
- "node_id": "MDc6TGljZW5zZW1pdA==",
25489
- "html_url": "https://api.github.com/licenses/mit"
25490
- },
25491
- "forks": 1,
25492
- "open_issues": 1,
25493
- "watchers": 1
25494
- }
25495
- },
25496
- "_links": {
25497
- "self": {
25498
- "href": "https://api.github.com/repos/octocat/Hello-World/pulls/1347"
25499
- },
25500
- "html": {
25501
- "href": "https://github.com/octocat/Hello-World/pull/1347"
25502
- },
25503
- "issue": {
25504
- "href": "https://api.github.com/repos/octocat/Hello-World/issues/1347"
25505
- },
25506
- "comments": {
25507
- "href": "https://api.github.com/repos/octocat/Hello-World/issues/1347/comments"
25508
- },
25509
- "review_comments": {
25510
- "href": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments"
25511
- },
25512
- "review_comment": {
25513
- "href": "https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}"
25514
- },
25515
- "commits": {
25516
- "href": "https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits"
25517
- },
25518
- "statuses": {
25519
- "href": "https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e"
25520
- }
25521
- },
25522
- "author_association": "OWNER",
25523
- "draft": false
25524
- }
25525
- },
25526
24844
  "secret-scanning-alert-list": {
25527
24845
  "value": [
25528
24846
  {