@octokit/openapi 7.12.1 → 7.14.0
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.
- package/generated/api.github.com.deref.json +739 -6
- package/generated/api.github.com.json +290 -4
- package/generated/ghes-3.2-diff-to-api.github.com.deref.json +1 -1
- package/generated/ghes-3.2-diff-to-api.github.com.json +1 -1
- package/generated/ghes-3.2-diff-to-ghes-3.3.deref.json +5 -2
- package/generated/ghes-3.2-diff-to-ghes-3.3.json +3 -2
- package/generated/ghes-3.2.deref.json +9 -6
- package/generated/ghes-3.2.json +5 -4
- package/generated/ghes-3.3-diff-to-ghes-3.4.deref.json +2 -2
- package/generated/ghes-3.3-diff-to-ghes-3.4.json +2 -2
- package/generated/ghes-3.3.deref.json +9 -6
- package/generated/ghes-3.3.json +5 -4
- package/generated/ghes-3.4-diff-to-ghes-3.5.deref.json +4 -1
- package/generated/ghes-3.4-diff-to-ghes-3.5.json +2 -1
- package/generated/ghes-3.4.deref.json +9 -6
- package/generated/ghes-3.4.json +5 -4
- package/generated/ghes-3.5-anicca-diff-to-ghes-3.6.deref.json +11 -0
- package/generated/ghes-3.5-diff-to-api.github.com.deref.json +1 -1
- package/generated/ghes-3.5-diff-to-api.github.com.json +1 -1
- package/generated/ghes-3.5-diff-to-ghes-3.6.deref.json +6 -2
- package/generated/ghes-3.5-diff-to-ghes-3.6.json +3 -2
- package/generated/ghes-3.5.deref.json +116 -6
- package/generated/ghes-3.5.json +111 -4
- package/generated/ghes-3.6-anicca-diff-to-api.github.com.deref.json +106 -11
- package/generated/ghes-3.6-diff-to-api.github.com.deref.json +8888 -1
- package/generated/ghes-3.6-diff-to-api.github.com.json +376 -1
- package/generated/ghes-3.6.deref.json +779 -116
- package/generated/ghes-3.6.json +542 -113
- package/generated/github.ae-anicca-diff-to-api.github.com.deref.json +6 -0
- package/generated/github.ae-diff-to-api.github.com.deref.json +28 -2
- package/generated/github.ae-diff-to-api.github.com.json +9 -2
- package/generated/github.ae.deref.json +76 -6
- package/generated/github.ae.json +55 -4
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.14.0",
|
|
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": {
|
|
@@ -6146,6 +6146,125 @@
|
|
|
6146
6146
|
}
|
|
6147
6147
|
}
|
|
6148
6148
|
},
|
|
6149
|
+
"/repos/{owner}/{repo}/actions/runs/{run_id}": {
|
|
6150
|
+
"get": {
|
|
6151
|
+
"summary": "Get a workflow run",
|
|
6152
|
+
"description": "Gets a specific workflow run. Anyone with read access to the repository can use this endpoint. If the repository is private you must use an access token with the `repo` scope. GitHub Apps must have the `actions:read` permission to use this endpoint.",
|
|
6153
|
+
"tags": [
|
|
6154
|
+
"actions"
|
|
6155
|
+
],
|
|
6156
|
+
"operationId": "actions/get-workflow-run",
|
|
6157
|
+
"externalDocs": {
|
|
6158
|
+
"description": "API method documentation",
|
|
6159
|
+
"url": "https://docs.github.com/enterprise-server@3.6/rest/reference/actions#get-a-workflow-run"
|
|
6160
|
+
},
|
|
6161
|
+
"parameters": [
|
|
6162
|
+
{
|
|
6163
|
+
"$ref": "#/components/parameters/owner"
|
|
6164
|
+
},
|
|
6165
|
+
{
|
|
6166
|
+
"$ref": "#/components/parameters/repo"
|
|
6167
|
+
},
|
|
6168
|
+
{
|
|
6169
|
+
"$ref": "#/components/parameters/run-id"
|
|
6170
|
+
},
|
|
6171
|
+
{
|
|
6172
|
+
"$ref": "#/components/parameters/exclude-pull-requests"
|
|
6173
|
+
}
|
|
6174
|
+
],
|
|
6175
|
+
"responses": {
|
|
6176
|
+
"200": {
|
|
6177
|
+
"description": "Response",
|
|
6178
|
+
"content": {
|
|
6179
|
+
"application/json": {
|
|
6180
|
+
"schema": {
|
|
6181
|
+
"$ref": "#/components/schemas/workflow-run"
|
|
6182
|
+
},
|
|
6183
|
+
"examples": {
|
|
6184
|
+
"default": {
|
|
6185
|
+
"$ref": "#/components/examples/workflow-run"
|
|
6186
|
+
}
|
|
6187
|
+
}
|
|
6188
|
+
}
|
|
6189
|
+
}
|
|
6190
|
+
}
|
|
6191
|
+
},
|
|
6192
|
+
"x-github": {
|
|
6193
|
+
"githubCloudOnly": false,
|
|
6194
|
+
"enabledForGitHubApps": true,
|
|
6195
|
+
"category": "actions",
|
|
6196
|
+
"subcategory": "workflow-runs"
|
|
6197
|
+
},
|
|
6198
|
+
"x-octokit": {
|
|
6199
|
+
"diff": {
|
|
6200
|
+
"api.github.com": {
|
|
6201
|
+
"type": "changed"
|
|
6202
|
+
}
|
|
6203
|
+
}
|
|
6204
|
+
}
|
|
6205
|
+
}
|
|
6206
|
+
},
|
|
6207
|
+
"/repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}": {
|
|
6208
|
+
"get": {
|
|
6209
|
+
"summary": "Get a workflow run attempt",
|
|
6210
|
+
"description": "Gets a specific workflow run attempt. Anyone with read access to the repository\ncan use this endpoint. If the repository is private you must use an access token\nwith the `repo` scope. GitHub Apps must have the `actions:read` permission to\nuse this endpoint.",
|
|
6211
|
+
"tags": [
|
|
6212
|
+
"actions"
|
|
6213
|
+
],
|
|
6214
|
+
"operationId": "actions/get-workflow-run-attempt",
|
|
6215
|
+
"externalDocs": {
|
|
6216
|
+
"description": "API method documentation",
|
|
6217
|
+
"url": "https://docs.github.com/enterprise-server@3.6/rest/reference/actions#get-a-workflow-run-attempt"
|
|
6218
|
+
},
|
|
6219
|
+
"parameters": [
|
|
6220
|
+
{
|
|
6221
|
+
"$ref": "#/components/parameters/owner"
|
|
6222
|
+
},
|
|
6223
|
+
{
|
|
6224
|
+
"$ref": "#/components/parameters/repo"
|
|
6225
|
+
},
|
|
6226
|
+
{
|
|
6227
|
+
"$ref": "#/components/parameters/run-id"
|
|
6228
|
+
},
|
|
6229
|
+
{
|
|
6230
|
+
"$ref": "#/components/parameters/attempt-number"
|
|
6231
|
+
},
|
|
6232
|
+
{
|
|
6233
|
+
"$ref": "#/components/parameters/exclude-pull-requests"
|
|
6234
|
+
}
|
|
6235
|
+
],
|
|
6236
|
+
"responses": {
|
|
6237
|
+
"200": {
|
|
6238
|
+
"description": "Response",
|
|
6239
|
+
"content": {
|
|
6240
|
+
"application/json": {
|
|
6241
|
+
"schema": {
|
|
6242
|
+
"$ref": "#/components/schemas/workflow-run"
|
|
6243
|
+
},
|
|
6244
|
+
"examples": {
|
|
6245
|
+
"default": {
|
|
6246
|
+
"$ref": "#/components/examples/workflow-run"
|
|
6247
|
+
}
|
|
6248
|
+
}
|
|
6249
|
+
}
|
|
6250
|
+
}
|
|
6251
|
+
}
|
|
6252
|
+
},
|
|
6253
|
+
"x-github": {
|
|
6254
|
+
"githubCloudOnly": false,
|
|
6255
|
+
"enabledForGitHubApps": true,
|
|
6256
|
+
"category": "actions",
|
|
6257
|
+
"subcategory": "workflow-runs"
|
|
6258
|
+
},
|
|
6259
|
+
"x-octokit": {
|
|
6260
|
+
"diff": {
|
|
6261
|
+
"api.github.com": {
|
|
6262
|
+
"type": "changed"
|
|
6263
|
+
}
|
|
6264
|
+
}
|
|
6265
|
+
}
|
|
6266
|
+
}
|
|
6267
|
+
},
|
|
6149
6268
|
"/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": {
|
|
6150
6269
|
"get": {
|
|
6151
6270
|
"summary": "List workflow runs for a workflow",
|
|
@@ -9536,6 +9655,24 @@
|
|
|
9536
9655
|
"type": "integer"
|
|
9537
9656
|
}
|
|
9538
9657
|
},
|
|
9658
|
+
"run-id": {
|
|
9659
|
+
"name": "run_id",
|
|
9660
|
+
"description": "The unique identifier of the workflow run.",
|
|
9661
|
+
"in": "path",
|
|
9662
|
+
"required": true,
|
|
9663
|
+
"schema": {
|
|
9664
|
+
"type": "integer"
|
|
9665
|
+
}
|
|
9666
|
+
},
|
|
9667
|
+
"attempt-number": {
|
|
9668
|
+
"name": "attempt_number",
|
|
9669
|
+
"description": "The attempt number of the workflow run.",
|
|
9670
|
+
"in": "path",
|
|
9671
|
+
"required": true,
|
|
9672
|
+
"schema": {
|
|
9673
|
+
"type": "integer"
|
|
9674
|
+
}
|
|
9675
|
+
},
|
|
9539
9676
|
"workflow-id": {
|
|
9540
9677
|
"name": "workflow_id",
|
|
9541
9678
|
"in": "path",
|
|
@@ -12333,6 +12470,7 @@
|
|
|
12333
12470
|
"node_id",
|
|
12334
12471
|
"head_branch",
|
|
12335
12472
|
"run_number",
|
|
12473
|
+
"display_title",
|
|
12336
12474
|
"event",
|
|
12337
12475
|
"status",
|
|
12338
12476
|
"conclusion",
|
|
@@ -19814,6 +19952,243 @@
|
|
|
19814
19952
|
]
|
|
19815
19953
|
}
|
|
19816
19954
|
},
|
|
19955
|
+
"workflow-run": {
|
|
19956
|
+
"value": {
|
|
19957
|
+
"id": 30433642,
|
|
19958
|
+
"name": "Build",
|
|
19959
|
+
"node_id": "MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==",
|
|
19960
|
+
"check_suite_id": 42,
|
|
19961
|
+
"check_suite_node_id": "MDEwOkNoZWNrU3VpdGU0Mg==",
|
|
19962
|
+
"head_branch": "main",
|
|
19963
|
+
"head_sha": "acb5820ced9479c074f688cc328bf03f341a511d",
|
|
19964
|
+
"path": ".github/workflows/build.yml@main",
|
|
19965
|
+
"run_number": 562,
|
|
19966
|
+
"event": "push",
|
|
19967
|
+
"status": "queued",
|
|
19968
|
+
"workflow_id": 159038,
|
|
19969
|
+
"url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642",
|
|
19970
|
+
"html_url": "https://github.com/octo-org/octo-repo/actions/runs/30433642",
|
|
19971
|
+
"pull_requests": [],
|
|
19972
|
+
"created_at": "2020-01-22T19:33:08Z",
|
|
19973
|
+
"updated_at": "2020-01-22T19:33:08Z",
|
|
19974
|
+
"actor": {
|
|
19975
|
+
"login": "octocat",
|
|
19976
|
+
"id": 1,
|
|
19977
|
+
"node_id": "MDQ6VXNlcjE=",
|
|
19978
|
+
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
|
19979
|
+
"gravatar_id": "",
|
|
19980
|
+
"url": "https://api.github.com/users/octocat",
|
|
19981
|
+
"html_url": "https://github.com/octocat",
|
|
19982
|
+
"followers_url": "https://api.github.com/users/octocat/followers",
|
|
19983
|
+
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
|
|
19984
|
+
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
|
|
19985
|
+
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
|
|
19986
|
+
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
|
|
19987
|
+
"organizations_url": "https://api.github.com/users/octocat/orgs",
|
|
19988
|
+
"repos_url": "https://api.github.com/users/octocat/repos",
|
|
19989
|
+
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
|
|
19990
|
+
"received_events_url": "https://api.github.com/users/octocat/received_events",
|
|
19991
|
+
"type": "User",
|
|
19992
|
+
"site_admin": false
|
|
19993
|
+
},
|
|
19994
|
+
"run_attempt": 1,
|
|
19995
|
+
"referenced_workflows": [
|
|
19996
|
+
{
|
|
19997
|
+
"path": "octocat/Hello-World/.github/workflows/deploy.yml@main",
|
|
19998
|
+
"sha": "86e8bc9ecf7d38b1ed2d2cfb8eb87ba9b35b01db",
|
|
19999
|
+
"ref": "refs/heads/main"
|
|
20000
|
+
},
|
|
20001
|
+
{
|
|
20002
|
+
"path": "octo-org/octo-repo/.github/workflows/report.yml@v2",
|
|
20003
|
+
"sha": "79e9790903e1c3373b1a3e3a941d57405478a232",
|
|
20004
|
+
"ref": "refs/tags/v2"
|
|
20005
|
+
},
|
|
20006
|
+
{
|
|
20007
|
+
"path": "octo-org/octo-repo/.github/workflows/secure.yml@1595d4b6de6a9e9751fb270a41019ce507d4099e",
|
|
20008
|
+
"sha": "1595d4b6de6a9e9751fb270a41019ce507d4099e"
|
|
20009
|
+
}
|
|
20010
|
+
],
|
|
20011
|
+
"run_started_at": "2020-01-22T19:33:08Z",
|
|
20012
|
+
"triggering_actor": {
|
|
20013
|
+
"login": "octocat",
|
|
20014
|
+
"id": 1,
|
|
20015
|
+
"node_id": "MDQ6VXNlcjE=",
|
|
20016
|
+
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
|
20017
|
+
"gravatar_id": "",
|
|
20018
|
+
"url": "https://api.github.com/users/octocat",
|
|
20019
|
+
"html_url": "https://github.com/octocat",
|
|
20020
|
+
"followers_url": "https://api.github.com/users/octocat/followers",
|
|
20021
|
+
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
|
|
20022
|
+
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
|
|
20023
|
+
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
|
|
20024
|
+
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
|
|
20025
|
+
"organizations_url": "https://api.github.com/users/octocat/orgs",
|
|
20026
|
+
"repos_url": "https://api.github.com/users/octocat/repos",
|
|
20027
|
+
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
|
|
20028
|
+
"received_events_url": "https://api.github.com/users/octocat/received_events",
|
|
20029
|
+
"type": "User",
|
|
20030
|
+
"site_admin": false
|
|
20031
|
+
},
|
|
20032
|
+
"jobs_url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs",
|
|
20033
|
+
"logs_url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs",
|
|
20034
|
+
"check_suite_url": "https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374",
|
|
20035
|
+
"artifacts_url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/artifacts",
|
|
20036
|
+
"cancel_url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/cancel",
|
|
20037
|
+
"rerun_url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/rerun",
|
|
20038
|
+
"previous_attempt_url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/attempts/1",
|
|
20039
|
+
"workflow_url": "https://api.github.com/repos/octo-org/octo-repo/actions/workflows/159038",
|
|
20040
|
+
"head_commit": {
|
|
20041
|
+
"id": "acb5820ced9479c074f688cc328bf03f341a511d",
|
|
20042
|
+
"tree_id": "d23f6eedb1e1b9610bbc754ddb5197bfe7271223",
|
|
20043
|
+
"message": "Create linter.yaml",
|
|
20044
|
+
"timestamp": "2020-01-22T19:33:05Z",
|
|
20045
|
+
"author": {
|
|
20046
|
+
"name": "Octo Cat",
|
|
20047
|
+
"email": "octocat@github.com"
|
|
20048
|
+
},
|
|
20049
|
+
"committer": {
|
|
20050
|
+
"name": "GitHub",
|
|
20051
|
+
"email": "noreply@github.com"
|
|
20052
|
+
}
|
|
20053
|
+
},
|
|
20054
|
+
"repository": {
|
|
20055
|
+
"id": 1296269,
|
|
20056
|
+
"node_id": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5",
|
|
20057
|
+
"name": "Hello-World",
|
|
20058
|
+
"full_name": "octocat/Hello-World",
|
|
20059
|
+
"owner": {
|
|
20060
|
+
"login": "octocat",
|
|
20061
|
+
"id": 1,
|
|
20062
|
+
"node_id": "MDQ6VXNlcjE=",
|
|
20063
|
+
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
|
20064
|
+
"gravatar_id": "",
|
|
20065
|
+
"url": "https://api.github.com/users/octocat",
|
|
20066
|
+
"html_url": "https://github.com/octocat",
|
|
20067
|
+
"followers_url": "https://api.github.com/users/octocat/followers",
|
|
20068
|
+
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
|
|
20069
|
+
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
|
|
20070
|
+
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
|
|
20071
|
+
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
|
|
20072
|
+
"organizations_url": "https://api.github.com/users/octocat/orgs",
|
|
20073
|
+
"repos_url": "https://api.github.com/users/octocat/repos",
|
|
20074
|
+
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
|
|
20075
|
+
"received_events_url": "https://api.github.com/users/octocat/received_events",
|
|
20076
|
+
"type": "User",
|
|
20077
|
+
"site_admin": false
|
|
20078
|
+
},
|
|
20079
|
+
"private": false,
|
|
20080
|
+
"html_url": "https://github.com/octocat/Hello-World",
|
|
20081
|
+
"description": "This your first repo!",
|
|
20082
|
+
"fork": false,
|
|
20083
|
+
"url": "https://api.github.com/repos/octocat/Hello-World",
|
|
20084
|
+
"archive_url": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}",
|
|
20085
|
+
"assignees_url": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}",
|
|
20086
|
+
"blobs_url": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}",
|
|
20087
|
+
"branches_url": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}",
|
|
20088
|
+
"collaborators_url": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}",
|
|
20089
|
+
"comments_url": "https://api.github.com/repos/octocat/Hello-World/comments{/number}",
|
|
20090
|
+
"commits_url": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}",
|
|
20091
|
+
"compare_url": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}",
|
|
20092
|
+
"contents_url": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}",
|
|
20093
|
+
"contributors_url": "https://api.github.com/repos/octocat/Hello-World/contributors",
|
|
20094
|
+
"deployments_url": "https://api.github.com/repos/octocat/Hello-World/deployments",
|
|
20095
|
+
"downloads_url": "https://api.github.com/repos/octocat/Hello-World/downloads",
|
|
20096
|
+
"events_url": "https://api.github.com/repos/octocat/Hello-World/events",
|
|
20097
|
+
"forks_url": "https://api.github.com/repos/octocat/Hello-World/forks",
|
|
20098
|
+
"git_commits_url": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}",
|
|
20099
|
+
"git_refs_url": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}",
|
|
20100
|
+
"git_tags_url": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}",
|
|
20101
|
+
"git_url": "git:github.com/octocat/Hello-World.git",
|
|
20102
|
+
"issue_comment_url": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}",
|
|
20103
|
+
"issue_events_url": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}",
|
|
20104
|
+
"issues_url": "https://api.github.com/repos/octocat/Hello-World/issues{/number}",
|
|
20105
|
+
"keys_url": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}",
|
|
20106
|
+
"labels_url": "https://api.github.com/repos/octocat/Hello-World/labels{/name}",
|
|
20107
|
+
"languages_url": "https://api.github.com/repos/octocat/Hello-World/languages",
|
|
20108
|
+
"merges_url": "https://api.github.com/repos/octocat/Hello-World/merges",
|
|
20109
|
+
"milestones_url": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}",
|
|
20110
|
+
"notifications_url": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}",
|
|
20111
|
+
"pulls_url": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}",
|
|
20112
|
+
"releases_url": "https://api.github.com/repos/octocat/Hello-World/releases{/id}",
|
|
20113
|
+
"ssh_url": "git@github.com:octocat/Hello-World.git",
|
|
20114
|
+
"stargazers_url": "https://api.github.com/repos/octocat/Hello-World/stargazers",
|
|
20115
|
+
"statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}",
|
|
20116
|
+
"subscribers_url": "https://api.github.com/repos/octocat/Hello-World/subscribers",
|
|
20117
|
+
"subscription_url": "https://api.github.com/repos/octocat/Hello-World/subscription",
|
|
20118
|
+
"tags_url": "https://api.github.com/repos/octocat/Hello-World/tags",
|
|
20119
|
+
"teams_url": "https://api.github.com/repos/octocat/Hello-World/teams",
|
|
20120
|
+
"trees_url": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}",
|
|
20121
|
+
"hooks_url": "http://api.github.com/repos/octocat/Hello-World/hooks"
|
|
20122
|
+
},
|
|
20123
|
+
"head_repository": {
|
|
20124
|
+
"id": 217723378,
|
|
20125
|
+
"node_id": "MDEwOlJlcG9zaXRvcnkyMTc3MjMzNzg=",
|
|
20126
|
+
"name": "octo-repo",
|
|
20127
|
+
"full_name": "octo-org/octo-repo",
|
|
20128
|
+
"private": true,
|
|
20129
|
+
"owner": {
|
|
20130
|
+
"login": "octocat",
|
|
20131
|
+
"id": 1,
|
|
20132
|
+
"node_id": "MDQ6VXNlcjE=",
|
|
20133
|
+
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
|
20134
|
+
"gravatar_id": "",
|
|
20135
|
+
"url": "https://api.github.com/users/octocat",
|
|
20136
|
+
"html_url": "https://github.com/octocat",
|
|
20137
|
+
"followers_url": "https://api.github.com/users/octocat/followers",
|
|
20138
|
+
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
|
|
20139
|
+
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
|
|
20140
|
+
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
|
|
20141
|
+
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
|
|
20142
|
+
"organizations_url": "https://api.github.com/users/octocat/orgs",
|
|
20143
|
+
"repos_url": "https://api.github.com/users/octocat/repos",
|
|
20144
|
+
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
|
|
20145
|
+
"received_events_url": "https://api.github.com/users/octocat/received_events",
|
|
20146
|
+
"type": "User",
|
|
20147
|
+
"site_admin": false
|
|
20148
|
+
},
|
|
20149
|
+
"html_url": "https://github.com/octo-org/octo-repo",
|
|
20150
|
+
"description": null,
|
|
20151
|
+
"fork": false,
|
|
20152
|
+
"url": "https://api.github.com/repos/octo-org/octo-repo",
|
|
20153
|
+
"forks_url": "https://api.github.com/repos/octo-org/octo-repo/forks",
|
|
20154
|
+
"keys_url": "https://api.github.com/repos/octo-org/octo-repo/keys{/key_id}",
|
|
20155
|
+
"collaborators_url": "https://api.github.com/repos/octo-org/octo-repo/collaborators{/collaborator}",
|
|
20156
|
+
"teams_url": "https://api.github.com/repos/octo-org/octo-repo/teams",
|
|
20157
|
+
"hooks_url": "https://api.github.com/repos/octo-org/octo-repo/hooks",
|
|
20158
|
+
"issue_events_url": "https://api.github.com/repos/octo-org/octo-repo/issues/events{/number}",
|
|
20159
|
+
"events_url": "https://api.github.com/repos/octo-org/octo-repo/events",
|
|
20160
|
+
"assignees_url": "https://api.github.com/repos/octo-org/octo-repo/assignees{/user}",
|
|
20161
|
+
"branches_url": "https://api.github.com/repos/octo-org/octo-repo/branches{/branch}",
|
|
20162
|
+
"tags_url": "https://api.github.com/repos/octo-org/octo-repo/tags",
|
|
20163
|
+
"blobs_url": "https://api.github.com/repos/octo-org/octo-repo/git/blobs{/sha}",
|
|
20164
|
+
"git_tags_url": "https://api.github.com/repos/octo-org/octo-repo/git/tags{/sha}",
|
|
20165
|
+
"git_refs_url": "https://api.github.com/repos/octo-org/octo-repo/git/refs{/sha}",
|
|
20166
|
+
"trees_url": "https://api.github.com/repos/octo-org/octo-repo/git/trees{/sha}",
|
|
20167
|
+
"statuses_url": "https://api.github.com/repos/octo-org/octo-repo/statuses/{sha}",
|
|
20168
|
+
"languages_url": "https://api.github.com/repos/octo-org/octo-repo/languages",
|
|
20169
|
+
"stargazers_url": "https://api.github.com/repos/octo-org/octo-repo/stargazers",
|
|
20170
|
+
"contributors_url": "https://api.github.com/repos/octo-org/octo-repo/contributors",
|
|
20171
|
+
"subscribers_url": "https://api.github.com/repos/octo-org/octo-repo/subscribers",
|
|
20172
|
+
"subscription_url": "https://api.github.com/repos/octo-org/octo-repo/subscription",
|
|
20173
|
+
"commits_url": "https://api.github.com/repos/octo-org/octo-repo/commits{/sha}",
|
|
20174
|
+
"git_commits_url": "https://api.github.com/repos/octo-org/octo-repo/git/commits{/sha}",
|
|
20175
|
+
"comments_url": "https://api.github.com/repos/octo-org/octo-repo/comments{/number}",
|
|
20176
|
+
"issue_comment_url": "https://api.github.com/repos/octo-org/octo-repo/issues/comments{/number}",
|
|
20177
|
+
"contents_url": "https://api.github.com/repos/octo-org/octo-repo/contents/{+path}",
|
|
20178
|
+
"compare_url": "https://api.github.com/repos/octo-org/octo-repo/compare/{base}...{head}",
|
|
20179
|
+
"merges_url": "https://api.github.com/repos/octo-org/octo-repo/merges",
|
|
20180
|
+
"archive_url": "https://api.github.com/repos/octo-org/octo-repo/{archive_format}{/ref}",
|
|
20181
|
+
"downloads_url": "https://api.github.com/repos/octo-org/octo-repo/downloads",
|
|
20182
|
+
"issues_url": "https://api.github.com/repos/octo-org/octo-repo/issues{/number}",
|
|
20183
|
+
"pulls_url": "https://api.github.com/repos/octo-org/octo-repo/pulls{/number}",
|
|
20184
|
+
"milestones_url": "https://api.github.com/repos/octo-org/octo-repo/milestones{/number}",
|
|
20185
|
+
"notifications_url": "https://api.github.com/repos/octo-org/octo-repo/notifications{?since,all,participating}",
|
|
20186
|
+
"labels_url": "https://api.github.com/repos/octo-org/octo-repo/labels{/name}",
|
|
20187
|
+
"releases_url": "https://api.github.com/repos/octo-org/octo-repo/releases{/id}",
|
|
20188
|
+
"deployments_url": "https://api.github.com/repos/octo-org/octo-repo/deployments"
|
|
20189
|
+
}
|
|
20190
|
+
}
|
|
20191
|
+
},
|
|
19817
20192
|
"autolink-items": {
|
|
19818
20193
|
"value": [
|
|
19819
20194
|
{
|