@octokit/openapi 7.6.0 → 7.9.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 +1927 -149
- package/generated/api.github.com.json +566 -22
- 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 +475 -23
- package/generated/ghes-3.2-diff-to-ghes-3.3.json +36 -6
- package/generated/ghes-3.2.deref.json +585 -35
- package/generated/ghes-3.2.json +48 -17
- package/generated/ghes-3.3-diff-to-ghes-3.4.deref.json +19 -3
- package/generated/ghes-3.3-diff-to-ghes-3.4.json +14 -3
- package/generated/ghes-3.3.deref.json +592 -36
- package/generated/ghes-3.3.json +55 -18
- package/generated/ghes-3.4-diff-to-ghes-3.5.deref.json +145 -1
- package/generated/ghes-3.4-diff-to-ghes-3.5.json +5 -1
- package/generated/ghes-3.4.deref.json +620 -36
- package/generated/ghes-3.4.json +55 -18
- 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 +537 -23
- package/generated/ghes-3.5-diff-to-ghes-3.6.json +39 -6
- package/generated/ghes-3.5.deref.json +633 -36
- package/generated/ghes-3.5.json +55 -18
- package/generated/ghes-3.6-anicca-diff-to-api.github.com.deref.json +122 -1
- package/generated/ghes-3.6-diff-to-api.github.com.deref.json +9482 -2
- package/generated/ghes-3.6-diff-to-api.github.com.json +1044 -31
- package/generated/ghes-3.6.deref.json +782 -39
- package/generated/ghes-3.6.json +204 -21
- package/generated/github.ae-anicca-diff-to-api.github.com.deref.json +49 -0
- package/generated/github.ae-diff-to-api.github.com.deref.json +446 -18
- package/generated/github.ae-diff-to-api.github.com.json +43 -7
- package/generated/github.ae.deref.json +768 -30
- package/generated/github.ae.json +237 -18
- 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.9.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": {
|
|
@@ -4707,6 +4707,56 @@
|
|
|
4707
4707
|
}
|
|
4708
4708
|
},
|
|
4709
4709
|
"/orgs/{org}": {
|
|
4710
|
+
"get": {
|
|
4711
|
+
"summary": "Get an organization",
|
|
4712
|
+
"description": "To see many of the organization response values, you need to be an authenticated organization owner with the `admin:org` scope. When the value of `two_factor_requirement_enabled` is `true`, the organization requires all members, billing managers, and outside collaborators to enable [two-factor authentication](https://docs.github.com/articles/securing-your-account-with-two-factor-authentication-2fa/).\n\nGitHub Apps with the `Organization plan` permission can use this endpoint to retrieve information about an organization's GitHub Enterprise Server plan. See \"[Authenticating with GitHub Apps](https://docs.github.com/enterprise-server@3.6/apps/building-github-apps/authenticating-with-github-apps/)\" for details. For an example response, see 'Response with GitHub Enterprise Server plan information' below.\"",
|
|
4713
|
+
"tags": [
|
|
4714
|
+
"orgs"
|
|
4715
|
+
],
|
|
4716
|
+
"operationId": "orgs/get",
|
|
4717
|
+
"externalDocs": {
|
|
4718
|
+
"description": "API method documentation",
|
|
4719
|
+
"url": "https://docs.github.com/enterprise-server@3.6/rest/reference/orgs#get-an-organization"
|
|
4720
|
+
},
|
|
4721
|
+
"parameters": [
|
|
4722
|
+
{
|
|
4723
|
+
"$ref": "#/components/parameters/org"
|
|
4724
|
+
}
|
|
4725
|
+
],
|
|
4726
|
+
"responses": {
|
|
4727
|
+
"200": {
|
|
4728
|
+
"description": "Response",
|
|
4729
|
+
"content": {
|
|
4730
|
+
"application/json": {
|
|
4731
|
+
"schema": {
|
|
4732
|
+
"$ref": "#/components/schemas/organization-full"
|
|
4733
|
+
},
|
|
4734
|
+
"examples": {
|
|
4735
|
+
"default-response": {
|
|
4736
|
+
"$ref": "#/components/examples/organization-full-default-response"
|
|
4737
|
+
}
|
|
4738
|
+
}
|
|
4739
|
+
}
|
|
4740
|
+
}
|
|
4741
|
+
},
|
|
4742
|
+
"404": {
|
|
4743
|
+
"$ref": "#/components/responses/not_found"
|
|
4744
|
+
}
|
|
4745
|
+
},
|
|
4746
|
+
"x-github": {
|
|
4747
|
+
"githubCloudOnly": false,
|
|
4748
|
+
"enabledForGitHubApps": true,
|
|
4749
|
+
"category": "orgs",
|
|
4750
|
+
"subcategory": null
|
|
4751
|
+
},
|
|
4752
|
+
"x-octokit": {
|
|
4753
|
+
"diff": {
|
|
4754
|
+
"api.github.com": {
|
|
4755
|
+
"type": "changed"
|
|
4756
|
+
}
|
|
4757
|
+
}
|
|
4758
|
+
}
|
|
4759
|
+
},
|
|
4710
4760
|
"patch": {
|
|
4711
4761
|
"summary": "Update an organization",
|
|
4712
4762
|
"description": "**Parameter Deprecation Notice:** GitHub Enterprise Server will replace and discontinue `members_allowed_repository_creation_type` in favor of more granular permissions. The new input parameters are `members_can_create_public_repositories`, `members_can_create_private_repositories` for all organizations and `members_can_create_internal_repositories` for organizations associated with an enterprise account using GitHub Enterprise Cloud or GitHub Enterprise Server 2.20+. For more information, see the [blog post](https://developer.github.com/changes/2019-12-03-internal-visibility-changes).\n\nEnables an authenticated organization owner with the `admin:org` scope to update the organization's profile and member privileges.",
|
|
@@ -5929,6 +5979,207 @@
|
|
|
5929
5979
|
}
|
|
5930
5980
|
}
|
|
5931
5981
|
},
|
|
5982
|
+
"/repos/{owner}/{repo}/actions/runs": {
|
|
5983
|
+
"get": {
|
|
5984
|
+
"summary": "List workflow runs for a repository",
|
|
5985
|
+
"description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.6/rest/overview/resources-in-the-rest-api#parameters).\n\nAnyone 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.",
|
|
5986
|
+
"tags": [
|
|
5987
|
+
"actions"
|
|
5988
|
+
],
|
|
5989
|
+
"operationId": "actions/list-workflow-runs-for-repo",
|
|
5990
|
+
"externalDocs": {
|
|
5991
|
+
"description": "API method documentation",
|
|
5992
|
+
"url": "https://docs.github.com/enterprise-server@3.6/rest/reference/actions#list-workflow-runs-for-a-repository"
|
|
5993
|
+
},
|
|
5994
|
+
"parameters": [
|
|
5995
|
+
{
|
|
5996
|
+
"$ref": "#/components/parameters/owner"
|
|
5997
|
+
},
|
|
5998
|
+
{
|
|
5999
|
+
"$ref": "#/components/parameters/repo"
|
|
6000
|
+
},
|
|
6001
|
+
{
|
|
6002
|
+
"$ref": "#/components/parameters/actor"
|
|
6003
|
+
},
|
|
6004
|
+
{
|
|
6005
|
+
"$ref": "#/components/parameters/workflow-run-branch"
|
|
6006
|
+
},
|
|
6007
|
+
{
|
|
6008
|
+
"$ref": "#/components/parameters/event"
|
|
6009
|
+
},
|
|
6010
|
+
{
|
|
6011
|
+
"$ref": "#/components/parameters/workflow-run-status"
|
|
6012
|
+
},
|
|
6013
|
+
{
|
|
6014
|
+
"$ref": "#/components/parameters/per-page"
|
|
6015
|
+
},
|
|
6016
|
+
{
|
|
6017
|
+
"$ref": "#/components/parameters/page"
|
|
6018
|
+
},
|
|
6019
|
+
{
|
|
6020
|
+
"$ref": "#/components/parameters/created"
|
|
6021
|
+
},
|
|
6022
|
+
{
|
|
6023
|
+
"$ref": "#/components/parameters/exclude-pull-requests"
|
|
6024
|
+
},
|
|
6025
|
+
{
|
|
6026
|
+
"$ref": "#/components/parameters/workflow-run-check-suite-id"
|
|
6027
|
+
}
|
|
6028
|
+
],
|
|
6029
|
+
"responses": {
|
|
6030
|
+
"200": {
|
|
6031
|
+
"description": "Response",
|
|
6032
|
+
"content": {
|
|
6033
|
+
"application/json": {
|
|
6034
|
+
"schema": {
|
|
6035
|
+
"type": "object",
|
|
6036
|
+
"required": [
|
|
6037
|
+
"total_count",
|
|
6038
|
+
"workflow_runs"
|
|
6039
|
+
],
|
|
6040
|
+
"properties": {
|
|
6041
|
+
"total_count": {
|
|
6042
|
+
"type": "integer"
|
|
6043
|
+
},
|
|
6044
|
+
"workflow_runs": {
|
|
6045
|
+
"type": "array",
|
|
6046
|
+
"items": {
|
|
6047
|
+
"$ref": "#/components/schemas/workflow-run"
|
|
6048
|
+
}
|
|
6049
|
+
}
|
|
6050
|
+
}
|
|
6051
|
+
},
|
|
6052
|
+
"examples": {
|
|
6053
|
+
"default": {
|
|
6054
|
+
"$ref": "#/components/examples/workflow-run-paginated"
|
|
6055
|
+
}
|
|
6056
|
+
}
|
|
6057
|
+
}
|
|
6058
|
+
},
|
|
6059
|
+
"headers": {
|
|
6060
|
+
"Link": {
|
|
6061
|
+
"$ref": "#/components/headers/link"
|
|
6062
|
+
}
|
|
6063
|
+
}
|
|
6064
|
+
}
|
|
6065
|
+
},
|
|
6066
|
+
"x-github": {
|
|
6067
|
+
"githubCloudOnly": false,
|
|
6068
|
+
"enabledForGitHubApps": true,
|
|
6069
|
+
"category": "actions",
|
|
6070
|
+
"subcategory": "workflow-runs"
|
|
6071
|
+
},
|
|
6072
|
+
"x-octokit": {
|
|
6073
|
+
"diff": {
|
|
6074
|
+
"api.github.com": {
|
|
6075
|
+
"type": "changed"
|
|
6076
|
+
}
|
|
6077
|
+
}
|
|
6078
|
+
}
|
|
6079
|
+
}
|
|
6080
|
+
},
|
|
6081
|
+
"/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": {
|
|
6082
|
+
"get": {
|
|
6083
|
+
"summary": "List workflow runs",
|
|
6084
|
+
"description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.6/rest/overview/resources-in-the-rest-api#parameters).\n\nAnyone 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.",
|
|
6085
|
+
"tags": [
|
|
6086
|
+
"actions"
|
|
6087
|
+
],
|
|
6088
|
+
"operationId": "actions/list-workflow-runs",
|
|
6089
|
+
"externalDocs": {
|
|
6090
|
+
"description": "API method documentation",
|
|
6091
|
+
"url": "https://docs.github.com/enterprise-server@3.6/rest/reference/actions#list-workflow-runs"
|
|
6092
|
+
},
|
|
6093
|
+
"parameters": [
|
|
6094
|
+
{
|
|
6095
|
+
"$ref": "#/components/parameters/owner"
|
|
6096
|
+
},
|
|
6097
|
+
{
|
|
6098
|
+
"$ref": "#/components/parameters/repo"
|
|
6099
|
+
},
|
|
6100
|
+
{
|
|
6101
|
+
"$ref": "#/components/parameters/workflow-id"
|
|
6102
|
+
},
|
|
6103
|
+
{
|
|
6104
|
+
"$ref": "#/components/parameters/actor"
|
|
6105
|
+
},
|
|
6106
|
+
{
|
|
6107
|
+
"$ref": "#/components/parameters/workflow-run-branch"
|
|
6108
|
+
},
|
|
6109
|
+
{
|
|
6110
|
+
"$ref": "#/components/parameters/event"
|
|
6111
|
+
},
|
|
6112
|
+
{
|
|
6113
|
+
"$ref": "#/components/parameters/workflow-run-status"
|
|
6114
|
+
},
|
|
6115
|
+
{
|
|
6116
|
+
"$ref": "#/components/parameters/per-page"
|
|
6117
|
+
},
|
|
6118
|
+
{
|
|
6119
|
+
"$ref": "#/components/parameters/page"
|
|
6120
|
+
},
|
|
6121
|
+
{
|
|
6122
|
+
"$ref": "#/components/parameters/created"
|
|
6123
|
+
},
|
|
6124
|
+
{
|
|
6125
|
+
"$ref": "#/components/parameters/exclude-pull-requests"
|
|
6126
|
+
},
|
|
6127
|
+
{
|
|
6128
|
+
"$ref": "#/components/parameters/workflow-run-check-suite-id"
|
|
6129
|
+
}
|
|
6130
|
+
],
|
|
6131
|
+
"responses": {
|
|
6132
|
+
"200": {
|
|
6133
|
+
"description": "Response",
|
|
6134
|
+
"content": {
|
|
6135
|
+
"application/json": {
|
|
6136
|
+
"schema": {
|
|
6137
|
+
"type": "object",
|
|
6138
|
+
"required": [
|
|
6139
|
+
"total_count",
|
|
6140
|
+
"workflow_runs"
|
|
6141
|
+
],
|
|
6142
|
+
"properties": {
|
|
6143
|
+
"total_count": {
|
|
6144
|
+
"type": "integer"
|
|
6145
|
+
},
|
|
6146
|
+
"workflow_runs": {
|
|
6147
|
+
"type": "array",
|
|
6148
|
+
"items": {
|
|
6149
|
+
"$ref": "#/components/schemas/workflow-run"
|
|
6150
|
+
}
|
|
6151
|
+
}
|
|
6152
|
+
}
|
|
6153
|
+
},
|
|
6154
|
+
"examples": {
|
|
6155
|
+
"default": {
|
|
6156
|
+
"$ref": "#/components/examples/workflow-run-paginated"
|
|
6157
|
+
}
|
|
6158
|
+
}
|
|
6159
|
+
}
|
|
6160
|
+
},
|
|
6161
|
+
"headers": {
|
|
6162
|
+
"Link": {
|
|
6163
|
+
"$ref": "#/components/headers/link"
|
|
6164
|
+
}
|
|
6165
|
+
}
|
|
6166
|
+
}
|
|
6167
|
+
},
|
|
6168
|
+
"x-github": {
|
|
6169
|
+
"githubCloudOnly": false,
|
|
6170
|
+
"enabledForGitHubApps": true,
|
|
6171
|
+
"category": "actions",
|
|
6172
|
+
"subcategory": "workflow-runs"
|
|
6173
|
+
},
|
|
6174
|
+
"x-octokit": {
|
|
6175
|
+
"diff": {
|
|
6176
|
+
"api.github.com": {
|
|
6177
|
+
"type": "changed"
|
|
6178
|
+
}
|
|
6179
|
+
}
|
|
6180
|
+
}
|
|
6181
|
+
}
|
|
6182
|
+
},
|
|
5932
6183
|
"/repos/{owner}/{repo}/autolinks": {
|
|
5933
6184
|
"get": {
|
|
5934
6185
|
"summary": "List all autolinks of a repository",
|
|
@@ -6019,6 +6270,11 @@
|
|
|
6019
6270
|
"url_template": {
|
|
6020
6271
|
"type": "string",
|
|
6021
6272
|
"description": "The URL must contain `<num>` for the reference number."
|
|
6273
|
+
},
|
|
6274
|
+
"is_alphanumeric": {
|
|
6275
|
+
"type": "boolean",
|
|
6276
|
+
"default": "true",
|
|
6277
|
+
"description": "Whether this autolink reference matches alphanumeric characters. If true, the `<num>` parameter of the `url_template` matches alphanumeric characters `A-Z` (case insensitive), `0-9`, and `-`. If false, this autolink reference only matches numeric characters."
|
|
6022
6278
|
}
|
|
6023
6279
|
},
|
|
6024
6280
|
"required": [
|
|
@@ -6030,7 +6286,8 @@
|
|
|
6030
6286
|
"default": {
|
|
6031
6287
|
"value": {
|
|
6032
6288
|
"key_prefix": "TICKET-",
|
|
6033
|
-
"url_template": "https://example.com/TICKET?query=<num>"
|
|
6289
|
+
"url_template": "https://example.com/TICKET?query=<num>",
|
|
6290
|
+
"is_alphanumeric": true
|
|
6034
6291
|
}
|
|
6035
6292
|
}
|
|
6036
6293
|
}
|
|
@@ -9116,54 +9373,149 @@
|
|
|
9116
9373
|
"type": "string"
|
|
9117
9374
|
}
|
|
9118
9375
|
},
|
|
9119
|
-
"
|
|
9120
|
-
"name": "
|
|
9121
|
-
"description": "
|
|
9122
|
-
"in": "
|
|
9123
|
-
"required":
|
|
9376
|
+
"actor": {
|
|
9377
|
+
"name": "actor",
|
|
9378
|
+
"description": "Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run.",
|
|
9379
|
+
"in": "query",
|
|
9380
|
+
"required": false,
|
|
9124
9381
|
"schema": {
|
|
9125
|
-
"type": "
|
|
9382
|
+
"type": "string"
|
|
9126
9383
|
}
|
|
9127
9384
|
},
|
|
9128
|
-
"
|
|
9129
|
-
"name": "
|
|
9130
|
-
"description": "
|
|
9385
|
+
"workflow-run-branch": {
|
|
9386
|
+
"name": "branch",
|
|
9387
|
+
"description": "Returns workflow runs associated with a branch. Use the name of the branch of the `push`.",
|
|
9131
9388
|
"in": "query",
|
|
9132
9389
|
"required": false,
|
|
9133
9390
|
"schema": {
|
|
9134
|
-
"
|
|
9391
|
+
"type": "string"
|
|
9135
9392
|
}
|
|
9136
9393
|
},
|
|
9137
|
-
"
|
|
9138
|
-
"name": "
|
|
9139
|
-
"description": "
|
|
9394
|
+
"event": {
|
|
9395
|
+
"name": "event",
|
|
9396
|
+
"description": "Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see \"[Events that trigger workflows](https://docs.github.com/en/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows).\"",
|
|
9140
9397
|
"in": "query",
|
|
9141
9398
|
"required": false,
|
|
9142
9399
|
"schema": {
|
|
9143
|
-
"
|
|
9400
|
+
"type": "string"
|
|
9144
9401
|
}
|
|
9145
9402
|
},
|
|
9146
|
-
"
|
|
9147
|
-
"name": "
|
|
9148
|
-
"description": "
|
|
9149
|
-
"in": "
|
|
9150
|
-
"required":
|
|
9403
|
+
"workflow-run-status": {
|
|
9404
|
+
"name": "status",
|
|
9405
|
+
"description": "Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status can be `in_progress`. Only GitHub can set a status of `waiting` or `requested`.",
|
|
9406
|
+
"in": "query",
|
|
9407
|
+
"required": false,
|
|
9151
9408
|
"schema": {
|
|
9152
|
-
"type": "
|
|
9409
|
+
"type": "string",
|
|
9410
|
+
"enum": [
|
|
9411
|
+
"completed",
|
|
9412
|
+
"action_required",
|
|
9413
|
+
"cancelled",
|
|
9414
|
+
"failure",
|
|
9415
|
+
"neutral",
|
|
9416
|
+
"skipped",
|
|
9417
|
+
"stale",
|
|
9418
|
+
"success",
|
|
9419
|
+
"timed_out",
|
|
9420
|
+
"in_progress",
|
|
9421
|
+
"queued",
|
|
9422
|
+
"requested",
|
|
9423
|
+
"waiting"
|
|
9424
|
+
]
|
|
9153
9425
|
}
|
|
9154
9426
|
},
|
|
9155
|
-
"
|
|
9156
|
-
"name": "
|
|
9157
|
-
"description": "
|
|
9158
|
-
"in": "
|
|
9159
|
-
"required":
|
|
9427
|
+
"created": {
|
|
9428
|
+
"name": "created",
|
|
9429
|
+
"description": "Returns workflow runs created within the given date-time range. For more information on the syntax, see \"[Understanding the search syntax](https://docs.github.com/enterprise-server@3.6/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates).\"",
|
|
9430
|
+
"in": "query",
|
|
9431
|
+
"required": false,
|
|
9160
9432
|
"schema": {
|
|
9161
|
-
"type": "
|
|
9433
|
+
"type": "string",
|
|
9434
|
+
"format": "date-time"
|
|
9162
9435
|
}
|
|
9163
9436
|
},
|
|
9164
|
-
"
|
|
9165
|
-
"name": "
|
|
9166
|
-
"description": "
|
|
9437
|
+
"exclude-pull-requests": {
|
|
9438
|
+
"name": "exclude_pull_requests",
|
|
9439
|
+
"description": "If `true` pull requests are omitted from the response (empty array).",
|
|
9440
|
+
"in": "query",
|
|
9441
|
+
"required": false,
|
|
9442
|
+
"schema": {
|
|
9443
|
+
"type": "boolean",
|
|
9444
|
+
"default": false
|
|
9445
|
+
}
|
|
9446
|
+
},
|
|
9447
|
+
"workflow-run-check-suite-id": {
|
|
9448
|
+
"name": "check_suite_id",
|
|
9449
|
+
"description": "Returns workflow runs with the `check_suite_id` that you specify.",
|
|
9450
|
+
"in": "query",
|
|
9451
|
+
"schema": {
|
|
9452
|
+
"type": "integer"
|
|
9453
|
+
}
|
|
9454
|
+
},
|
|
9455
|
+
"workflow-id": {
|
|
9456
|
+
"name": "workflow_id",
|
|
9457
|
+
"in": "path",
|
|
9458
|
+
"description": "The ID of the workflow. You can also pass the workflow file name as a string.",
|
|
9459
|
+
"required": true,
|
|
9460
|
+
"schema": {
|
|
9461
|
+
"oneOf": [
|
|
9462
|
+
{
|
|
9463
|
+
"type": "integer"
|
|
9464
|
+
},
|
|
9465
|
+
{
|
|
9466
|
+
"type": "string"
|
|
9467
|
+
}
|
|
9468
|
+
]
|
|
9469
|
+
}
|
|
9470
|
+
},
|
|
9471
|
+
"autolink-id": {
|
|
9472
|
+
"name": "autolink_id",
|
|
9473
|
+
"description": "The unique identifier of the autolink.",
|
|
9474
|
+
"in": "path",
|
|
9475
|
+
"required": true,
|
|
9476
|
+
"schema": {
|
|
9477
|
+
"type": "integer"
|
|
9478
|
+
}
|
|
9479
|
+
},
|
|
9480
|
+
"tool-name": {
|
|
9481
|
+
"name": "tool_name",
|
|
9482
|
+
"description": "The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, but not both.",
|
|
9483
|
+
"in": "query",
|
|
9484
|
+
"required": false,
|
|
9485
|
+
"schema": {
|
|
9486
|
+
"$ref": "#/components/schemas/code-scanning-analysis-tool-name"
|
|
9487
|
+
}
|
|
9488
|
+
},
|
|
9489
|
+
"tool-guid": {
|
|
9490
|
+
"name": "tool_guid",
|
|
9491
|
+
"description": "The GUID of a code scanning tool. Only results by this tool will be listed. Note that some code scanning tools may not include a GUID in their analysis data. You can specify the tool by using either `tool_guid` or `tool_name`, but not both.",
|
|
9492
|
+
"in": "query",
|
|
9493
|
+
"required": false,
|
|
9494
|
+
"schema": {
|
|
9495
|
+
"$ref": "#/components/schemas/code-scanning-analysis-tool-guid"
|
|
9496
|
+
}
|
|
9497
|
+
},
|
|
9498
|
+
"key-id": {
|
|
9499
|
+
"name": "key_id",
|
|
9500
|
+
"description": "The unique identifier of the key.",
|
|
9501
|
+
"in": "path",
|
|
9502
|
+
"required": true,
|
|
9503
|
+
"schema": {
|
|
9504
|
+
"type": "integer"
|
|
9505
|
+
}
|
|
9506
|
+
},
|
|
9507
|
+
"release-id": {
|
|
9508
|
+
"name": "release_id",
|
|
9509
|
+
"description": "The unique identifier of the release.",
|
|
9510
|
+
"in": "path",
|
|
9511
|
+
"required": true,
|
|
9512
|
+
"schema": {
|
|
9513
|
+
"type": "integer"
|
|
9514
|
+
}
|
|
9515
|
+
},
|
|
9516
|
+
"since-repo": {
|
|
9517
|
+
"name": "since",
|
|
9518
|
+
"description": "A repository ID. Only return repositories with an ID greater than this ID.",
|
|
9167
9519
|
"in": "query",
|
|
9168
9520
|
"required": false,
|
|
9169
9521
|
"schema": {
|
|
@@ -11702,6 +12054,205 @@
|
|
|
11702
12054
|
"repo_cache_size_limit_in_gb"
|
|
11703
12055
|
]
|
|
11704
12056
|
},
|
|
12057
|
+
"workflow-run": {
|
|
12058
|
+
"title": "Workflow Run",
|
|
12059
|
+
"description": "An invocation of a workflow",
|
|
12060
|
+
"type": "object",
|
|
12061
|
+
"properties": {
|
|
12062
|
+
"id": {
|
|
12063
|
+
"type": "integer",
|
|
12064
|
+
"description": "The ID of the workflow run.",
|
|
12065
|
+
"example": 5
|
|
12066
|
+
},
|
|
12067
|
+
"name": {
|
|
12068
|
+
"type": "string",
|
|
12069
|
+
"description": "The name of the workflow run.",
|
|
12070
|
+
"nullable": true,
|
|
12071
|
+
"example": "Build"
|
|
12072
|
+
},
|
|
12073
|
+
"node_id": {
|
|
12074
|
+
"type": "string",
|
|
12075
|
+
"example": "MDEwOkNoZWNrU3VpdGU1"
|
|
12076
|
+
},
|
|
12077
|
+
"check_suite_id": {
|
|
12078
|
+
"type": "integer",
|
|
12079
|
+
"description": "The ID of the associated check suite.",
|
|
12080
|
+
"example": 42
|
|
12081
|
+
},
|
|
12082
|
+
"check_suite_node_id": {
|
|
12083
|
+
"type": "string",
|
|
12084
|
+
"description": "The node ID of the associated check suite.",
|
|
12085
|
+
"example": "MDEwOkNoZWNrU3VpdGU0Mg=="
|
|
12086
|
+
},
|
|
12087
|
+
"head_branch": {
|
|
12088
|
+
"type": "string",
|
|
12089
|
+
"nullable": true,
|
|
12090
|
+
"example": "master"
|
|
12091
|
+
},
|
|
12092
|
+
"head_sha": {
|
|
12093
|
+
"description": "The SHA of the head commit that points to the version of the workflow being run.",
|
|
12094
|
+
"example": "009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d",
|
|
12095
|
+
"type": "string"
|
|
12096
|
+
},
|
|
12097
|
+
"path": {
|
|
12098
|
+
"description": "The full path of the workflow",
|
|
12099
|
+
"example": "octocat/octo-repo/.github/workflows/ci.yml@main",
|
|
12100
|
+
"type": "string"
|
|
12101
|
+
},
|
|
12102
|
+
"run_number": {
|
|
12103
|
+
"type": "integer",
|
|
12104
|
+
"description": "The auto incrementing run number for the workflow run.",
|
|
12105
|
+
"example": 106
|
|
12106
|
+
},
|
|
12107
|
+
"run_attempt": {
|
|
12108
|
+
"type": "integer",
|
|
12109
|
+
"description": "Attempt number of the run, 1 for first attempt and higher if the workflow was re-run.",
|
|
12110
|
+
"example": 1
|
|
12111
|
+
},
|
|
12112
|
+
"referenced_workflows": {
|
|
12113
|
+
"type": "array",
|
|
12114
|
+
"nullable": true,
|
|
12115
|
+
"items": {
|
|
12116
|
+
"$ref": "#/components/schemas/referenced-workflow"
|
|
12117
|
+
}
|
|
12118
|
+
},
|
|
12119
|
+
"event": {
|
|
12120
|
+
"type": "string",
|
|
12121
|
+
"example": "push"
|
|
12122
|
+
},
|
|
12123
|
+
"status": {
|
|
12124
|
+
"type": "string",
|
|
12125
|
+
"nullable": true,
|
|
12126
|
+
"example": "completed"
|
|
12127
|
+
},
|
|
12128
|
+
"conclusion": {
|
|
12129
|
+
"type": "string",
|
|
12130
|
+
"nullable": true,
|
|
12131
|
+
"example": "neutral"
|
|
12132
|
+
},
|
|
12133
|
+
"workflow_id": {
|
|
12134
|
+
"type": "integer",
|
|
12135
|
+
"description": "The ID of the parent workflow.",
|
|
12136
|
+
"example": 5
|
|
12137
|
+
},
|
|
12138
|
+
"url": {
|
|
12139
|
+
"type": "string",
|
|
12140
|
+
"description": "The URL to the workflow run.",
|
|
12141
|
+
"example": "https://api.github.com/repos/github/hello-world/actions/runs/5"
|
|
12142
|
+
},
|
|
12143
|
+
"html_url": {
|
|
12144
|
+
"type": "string",
|
|
12145
|
+
"example": "https://github.com/github/hello-world/suites/4"
|
|
12146
|
+
},
|
|
12147
|
+
"pull_requests": {
|
|
12148
|
+
"type": "array",
|
|
12149
|
+
"nullable": true,
|
|
12150
|
+
"items": {
|
|
12151
|
+
"$ref": "#/components/schemas/pull-request-minimal"
|
|
12152
|
+
}
|
|
12153
|
+
},
|
|
12154
|
+
"created_at": {
|
|
12155
|
+
"type": "string",
|
|
12156
|
+
"format": "date-time"
|
|
12157
|
+
},
|
|
12158
|
+
"updated_at": {
|
|
12159
|
+
"type": "string",
|
|
12160
|
+
"format": "date-time"
|
|
12161
|
+
},
|
|
12162
|
+
"actor": {
|
|
12163
|
+
"$ref": "#/components/schemas/simple-user"
|
|
12164
|
+
},
|
|
12165
|
+
"triggering_actor": {
|
|
12166
|
+
"$ref": "#/components/schemas/simple-user"
|
|
12167
|
+
},
|
|
12168
|
+
"run_started_at": {
|
|
12169
|
+
"type": "string",
|
|
12170
|
+
"format": "date-time",
|
|
12171
|
+
"description": "The start time of the latest run. Resets on re-run."
|
|
12172
|
+
},
|
|
12173
|
+
"jobs_url": {
|
|
12174
|
+
"description": "The URL to the jobs for the workflow run.",
|
|
12175
|
+
"type": "string",
|
|
12176
|
+
"example": "https://api.github.com/repos/github/hello-world/actions/runs/5/jobs"
|
|
12177
|
+
},
|
|
12178
|
+
"logs_url": {
|
|
12179
|
+
"description": "The URL to download the logs for the workflow run.",
|
|
12180
|
+
"type": "string",
|
|
12181
|
+
"example": "https://api.github.com/repos/github/hello-world/actions/runs/5/logs"
|
|
12182
|
+
},
|
|
12183
|
+
"check_suite_url": {
|
|
12184
|
+
"description": "The URL to the associated check suite.",
|
|
12185
|
+
"type": "string",
|
|
12186
|
+
"example": "https://api.github.com/repos/github/hello-world/check-suites/12"
|
|
12187
|
+
},
|
|
12188
|
+
"artifacts_url": {
|
|
12189
|
+
"description": "The URL to the artifacts for the workflow run.",
|
|
12190
|
+
"type": "string",
|
|
12191
|
+
"example": "https://api.github.com/repos/github/hello-world/actions/runs/5/rerun/artifacts"
|
|
12192
|
+
},
|
|
12193
|
+
"cancel_url": {
|
|
12194
|
+
"description": "The URL to cancel the workflow run.",
|
|
12195
|
+
"type": "string",
|
|
12196
|
+
"example": "https://api.github.com/repos/github/hello-world/actions/runs/5/cancel"
|
|
12197
|
+
},
|
|
12198
|
+
"rerun_url": {
|
|
12199
|
+
"description": "The URL to rerun the workflow run.",
|
|
12200
|
+
"type": "string",
|
|
12201
|
+
"example": "https://api.github.com/repos/github/hello-world/actions/runs/5/rerun"
|
|
12202
|
+
},
|
|
12203
|
+
"previous_attempt_url": {
|
|
12204
|
+
"nullable": true,
|
|
12205
|
+
"description": "The URL to the previous attempted run of this workflow, if one exists.",
|
|
12206
|
+
"type": "string",
|
|
12207
|
+
"example": "https://api.github.com/repos/github/hello-world/actions/runs/5/attempts/3"
|
|
12208
|
+
},
|
|
12209
|
+
"workflow_url": {
|
|
12210
|
+
"description": "The URL to the workflow.",
|
|
12211
|
+
"type": "string",
|
|
12212
|
+
"example": "https://api.github.com/repos/github/hello-world/actions/workflows/main.yaml"
|
|
12213
|
+
},
|
|
12214
|
+
"head_commit": {
|
|
12215
|
+
"$ref": "#/components/schemas/nullable-simple-commit"
|
|
12216
|
+
},
|
|
12217
|
+
"repository": {
|
|
12218
|
+
"$ref": "#/components/schemas/minimal-repository"
|
|
12219
|
+
},
|
|
12220
|
+
"head_repository": {
|
|
12221
|
+
"$ref": "#/components/schemas/minimal-repository"
|
|
12222
|
+
},
|
|
12223
|
+
"head_repository_id": {
|
|
12224
|
+
"type": "integer",
|
|
12225
|
+
"example": 5
|
|
12226
|
+
}
|
|
12227
|
+
},
|
|
12228
|
+
"required": [
|
|
12229
|
+
"id",
|
|
12230
|
+
"node_id",
|
|
12231
|
+
"head_branch",
|
|
12232
|
+
"run_number",
|
|
12233
|
+
"event",
|
|
12234
|
+
"status",
|
|
12235
|
+
"conclusion",
|
|
12236
|
+
"head_sha",
|
|
12237
|
+
"path",
|
|
12238
|
+
"workflow_id",
|
|
12239
|
+
"url",
|
|
12240
|
+
"html_url",
|
|
12241
|
+
"created_at",
|
|
12242
|
+
"updated_at",
|
|
12243
|
+
"head_commit",
|
|
12244
|
+
"head_repository",
|
|
12245
|
+
"repository",
|
|
12246
|
+
"jobs_url",
|
|
12247
|
+
"logs_url",
|
|
12248
|
+
"check_suite_url",
|
|
12249
|
+
"cancel_url",
|
|
12250
|
+
"rerun_url",
|
|
12251
|
+
"artifacts_url",
|
|
12252
|
+
"workflow_url",
|
|
12253
|
+
"pull_requests"
|
|
12254
|
+
]
|
|
12255
|
+
},
|
|
11705
12256
|
"autolink": {
|
|
11706
12257
|
"title": "Autolink reference",
|
|
11707
12258
|
"description": "An autolink reference.",
|
|
@@ -14779,6 +15330,10 @@
|
|
|
14779
15330
|
"starred_at": {
|
|
14780
15331
|
"type": "string",
|
|
14781
15332
|
"example": "\"2020-07-09T00:17:42Z\""
|
|
15333
|
+
},
|
|
15334
|
+
"anonymous_access_enabled": {
|
|
15335
|
+
"type": "boolean",
|
|
15336
|
+
"description": "Whether anonymous git access is enabled for this repository"
|
|
14782
15337
|
}
|
|
14783
15338
|
},
|
|
14784
15339
|
"required": [
|
|
@@ -15622,6 +16177,179 @@
|
|
|
15622
16177
|
"used"
|
|
15623
16178
|
]
|
|
15624
16179
|
},
|
|
16180
|
+
"referenced-workflow": {
|
|
16181
|
+
"title": "Referenced workflow",
|
|
16182
|
+
"description": "A workflow referenced/reused by the initial caller workflow",
|
|
16183
|
+
"type": "object",
|
|
16184
|
+
"properties": {
|
|
16185
|
+
"path": {
|
|
16186
|
+
"type": "string"
|
|
16187
|
+
},
|
|
16188
|
+
"sha": {
|
|
16189
|
+
"type": "string"
|
|
16190
|
+
},
|
|
16191
|
+
"ref": {
|
|
16192
|
+
"type": "string"
|
|
16193
|
+
}
|
|
16194
|
+
},
|
|
16195
|
+
"required": [
|
|
16196
|
+
"path",
|
|
16197
|
+
"sha"
|
|
16198
|
+
]
|
|
16199
|
+
},
|
|
16200
|
+
"pull-request-minimal": {
|
|
16201
|
+
"title": "Pull Request Minimal",
|
|
16202
|
+
"type": "object",
|
|
16203
|
+
"properties": {
|
|
16204
|
+
"id": {
|
|
16205
|
+
"type": "integer"
|
|
16206
|
+
},
|
|
16207
|
+
"number": {
|
|
16208
|
+
"type": "integer"
|
|
16209
|
+
},
|
|
16210
|
+
"url": {
|
|
16211
|
+
"type": "string"
|
|
16212
|
+
},
|
|
16213
|
+
"head": {
|
|
16214
|
+
"type": "object",
|
|
16215
|
+
"properties": {
|
|
16216
|
+
"ref": {
|
|
16217
|
+
"type": "string"
|
|
16218
|
+
},
|
|
16219
|
+
"sha": {
|
|
16220
|
+
"type": "string"
|
|
16221
|
+
},
|
|
16222
|
+
"repo": {
|
|
16223
|
+
"type": "object",
|
|
16224
|
+
"properties": {
|
|
16225
|
+
"id": {
|
|
16226
|
+
"type": "integer"
|
|
16227
|
+
},
|
|
16228
|
+
"url": {
|
|
16229
|
+
"type": "string"
|
|
16230
|
+
},
|
|
16231
|
+
"name": {
|
|
16232
|
+
"type": "string"
|
|
16233
|
+
}
|
|
16234
|
+
},
|
|
16235
|
+
"required": [
|
|
16236
|
+
"id",
|
|
16237
|
+
"url",
|
|
16238
|
+
"name"
|
|
16239
|
+
]
|
|
16240
|
+
}
|
|
16241
|
+
},
|
|
16242
|
+
"required": [
|
|
16243
|
+
"ref",
|
|
16244
|
+
"sha",
|
|
16245
|
+
"repo"
|
|
16246
|
+
]
|
|
16247
|
+
},
|
|
16248
|
+
"base": {
|
|
16249
|
+
"type": "object",
|
|
16250
|
+
"properties": {
|
|
16251
|
+
"ref": {
|
|
16252
|
+
"type": "string"
|
|
16253
|
+
},
|
|
16254
|
+
"sha": {
|
|
16255
|
+
"type": "string"
|
|
16256
|
+
},
|
|
16257
|
+
"repo": {
|
|
16258
|
+
"type": "object",
|
|
16259
|
+
"properties": {
|
|
16260
|
+
"id": {
|
|
16261
|
+
"type": "integer"
|
|
16262
|
+
},
|
|
16263
|
+
"url": {
|
|
16264
|
+
"type": "string"
|
|
16265
|
+
},
|
|
16266
|
+
"name": {
|
|
16267
|
+
"type": "string"
|
|
16268
|
+
}
|
|
16269
|
+
},
|
|
16270
|
+
"required": [
|
|
16271
|
+
"id",
|
|
16272
|
+
"url",
|
|
16273
|
+
"name"
|
|
16274
|
+
]
|
|
16275
|
+
}
|
|
16276
|
+
},
|
|
16277
|
+
"required": [
|
|
16278
|
+
"ref",
|
|
16279
|
+
"sha",
|
|
16280
|
+
"repo"
|
|
16281
|
+
]
|
|
16282
|
+
}
|
|
16283
|
+
},
|
|
16284
|
+
"required": [
|
|
16285
|
+
"id",
|
|
16286
|
+
"number",
|
|
16287
|
+
"url",
|
|
16288
|
+
"head",
|
|
16289
|
+
"base"
|
|
16290
|
+
]
|
|
16291
|
+
},
|
|
16292
|
+
"nullable-simple-commit": {
|
|
16293
|
+
"title": "Simple Commit",
|
|
16294
|
+
"description": "Simple Commit",
|
|
16295
|
+
"type": "object",
|
|
16296
|
+
"properties": {
|
|
16297
|
+
"id": {
|
|
16298
|
+
"type": "string"
|
|
16299
|
+
},
|
|
16300
|
+
"tree_id": {
|
|
16301
|
+
"type": "string"
|
|
16302
|
+
},
|
|
16303
|
+
"message": {
|
|
16304
|
+
"type": "string"
|
|
16305
|
+
},
|
|
16306
|
+
"timestamp": {
|
|
16307
|
+
"type": "string",
|
|
16308
|
+
"format": "date-time"
|
|
16309
|
+
},
|
|
16310
|
+
"author": {
|
|
16311
|
+
"type": "object",
|
|
16312
|
+
"properties": {
|
|
16313
|
+
"name": {
|
|
16314
|
+
"type": "string"
|
|
16315
|
+
},
|
|
16316
|
+
"email": {
|
|
16317
|
+
"type": "string"
|
|
16318
|
+
}
|
|
16319
|
+
},
|
|
16320
|
+
"required": [
|
|
16321
|
+
"name",
|
|
16322
|
+
"email"
|
|
16323
|
+
],
|
|
16324
|
+
"nullable": true
|
|
16325
|
+
},
|
|
16326
|
+
"committer": {
|
|
16327
|
+
"type": "object",
|
|
16328
|
+
"properties": {
|
|
16329
|
+
"name": {
|
|
16330
|
+
"type": "string"
|
|
16331
|
+
},
|
|
16332
|
+
"email": {
|
|
16333
|
+
"type": "string"
|
|
16334
|
+
}
|
|
16335
|
+
},
|
|
16336
|
+
"required": [
|
|
16337
|
+
"name",
|
|
16338
|
+
"email"
|
|
16339
|
+
],
|
|
16340
|
+
"nullable": true
|
|
16341
|
+
}
|
|
16342
|
+
},
|
|
16343
|
+
"required": [
|
|
16344
|
+
"id",
|
|
16345
|
+
"tree_id",
|
|
16346
|
+
"message",
|
|
16347
|
+
"timestamp",
|
|
16348
|
+
"author",
|
|
16349
|
+
"committer"
|
|
16350
|
+
],
|
|
16351
|
+
"nullable": true
|
|
16352
|
+
},
|
|
15625
16353
|
"code-scanning-analysis-tool-name": {
|
|
15626
16354
|
"type": "string",
|
|
15627
16355
|
"description": "The name of the tool used to generate the code scanning analysis."
|
|
@@ -16665,6 +17393,10 @@
|
|
|
16665
17393
|
"starred_at": {
|
|
16666
17394
|
"type": "string",
|
|
16667
17395
|
"example": "\"2020-07-09T00:17:42Z\""
|
|
17396
|
+
},
|
|
17397
|
+
"anonymous_access_enabled": {
|
|
17398
|
+
"type": "boolean",
|
|
17399
|
+
"description": "Whether anonymous git access is enabled for this repository"
|
|
16668
17400
|
}
|
|
16669
17401
|
},
|
|
16670
17402
|
"required": [
|
|
@@ -18043,6 +18775,62 @@
|
|
|
18043
18775
|
"installed_version": "3.6.0"
|
|
18044
18776
|
}
|
|
18045
18777
|
},
|
|
18778
|
+
"organization-full-default-response": {
|
|
18779
|
+
"summary": "Default response",
|
|
18780
|
+
"value": {
|
|
18781
|
+
"login": "github",
|
|
18782
|
+
"id": 1,
|
|
18783
|
+
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE=",
|
|
18784
|
+
"url": "https://api.github.com/orgs/github",
|
|
18785
|
+
"repos_url": "https://api.github.com/orgs/github/repos",
|
|
18786
|
+
"events_url": "https://api.github.com/orgs/github/events",
|
|
18787
|
+
"hooks_url": "https://api.github.com/orgs/github/hooks",
|
|
18788
|
+
"issues_url": "https://api.github.com/orgs/github/issues",
|
|
18789
|
+
"members_url": "https://api.github.com/orgs/github/members{/member}",
|
|
18790
|
+
"public_members_url": "https://api.github.com/orgs/github/public_members{/member}",
|
|
18791
|
+
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
|
18792
|
+
"description": "A great organization",
|
|
18793
|
+
"name": "github",
|
|
18794
|
+
"company": "GitHub",
|
|
18795
|
+
"blog": "https://github.com/blog",
|
|
18796
|
+
"location": "San Francisco",
|
|
18797
|
+
"email": "octocat@github.com",
|
|
18798
|
+
"twitter_username": "github",
|
|
18799
|
+
"is_verified": true,
|
|
18800
|
+
"has_organization_projects": true,
|
|
18801
|
+
"has_repository_projects": true,
|
|
18802
|
+
"public_repos": 2,
|
|
18803
|
+
"public_gists": 1,
|
|
18804
|
+
"followers": 20,
|
|
18805
|
+
"following": 0,
|
|
18806
|
+
"html_url": "https://github.com/octocat",
|
|
18807
|
+
"created_at": "2008-01-14T04:33:35Z",
|
|
18808
|
+
"updated_at": "2014-03-03T18:58:10Z",
|
|
18809
|
+
"type": "Organization",
|
|
18810
|
+
"total_private_repos": 100,
|
|
18811
|
+
"owned_private_repos": 100,
|
|
18812
|
+
"private_gists": 81,
|
|
18813
|
+
"disk_usage": 10000,
|
|
18814
|
+
"collaborators": 8,
|
|
18815
|
+
"billing_email": "mona@github.com",
|
|
18816
|
+
"plan": {
|
|
18817
|
+
"name": "Medium",
|
|
18818
|
+
"space": 400,
|
|
18819
|
+
"private_repos": 20,
|
|
18820
|
+
"filled_seats": 4,
|
|
18821
|
+
"seats": 5
|
|
18822
|
+
},
|
|
18823
|
+
"default_repository_permission": "read",
|
|
18824
|
+
"members_can_create_repositories": true,
|
|
18825
|
+
"two_factor_requirement_enabled": true,
|
|
18826
|
+
"members_allowed_repository_creation_type": "all",
|
|
18827
|
+
"members_can_create_public_repositories": false,
|
|
18828
|
+
"members_can_create_private_repositories": false,
|
|
18829
|
+
"members_can_create_internal_repositories": false,
|
|
18830
|
+
"members_can_create_pages": true,
|
|
18831
|
+
"members_can_fork_private_repositories": false
|
|
18832
|
+
}
|
|
18833
|
+
},
|
|
18046
18834
|
"organization-full": {
|
|
18047
18835
|
"value": {
|
|
18048
18836
|
"login": "github",
|
|
@@ -18681,6 +19469,231 @@
|
|
|
18681
19469
|
"repo_cache_size_limit_in_gb": 14
|
|
18682
19470
|
}
|
|
18683
19471
|
},
|
|
19472
|
+
"workflow-run-paginated": {
|
|
19473
|
+
"value": {
|
|
19474
|
+
"total_count": 1,
|
|
19475
|
+
"workflow_runs": [
|
|
19476
|
+
{
|
|
19477
|
+
"id": 30433642,
|
|
19478
|
+
"name": "Build",
|
|
19479
|
+
"node_id": "MDEyOldvcmtmbG93IFJ1bjI2OTI4OQ==",
|
|
19480
|
+
"check_suite_id": 42,
|
|
19481
|
+
"check_suite_node_id": "MDEwOkNoZWNrU3VpdGU0Mg==",
|
|
19482
|
+
"head_branch": "master",
|
|
19483
|
+
"head_sha": "acb5820ced9479c074f688cc328bf03f341a511d",
|
|
19484
|
+
"run_number": 562,
|
|
19485
|
+
"event": "push",
|
|
19486
|
+
"status": "queued",
|
|
19487
|
+
"conclusion": null,
|
|
19488
|
+
"workflow_id": 159038,
|
|
19489
|
+
"url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642",
|
|
19490
|
+
"html_url": "https://github.com/octo-org/octo-repo/actions/runs/30433642",
|
|
19491
|
+
"pull_requests": [],
|
|
19492
|
+
"created_at": "2020-01-22T19:33:08Z",
|
|
19493
|
+
"updated_at": "2020-01-22T19:33:08Z",
|
|
19494
|
+
"actor": {
|
|
19495
|
+
"login": "octocat",
|
|
19496
|
+
"id": 1,
|
|
19497
|
+
"node_id": "MDQ6VXNlcjE=",
|
|
19498
|
+
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
|
19499
|
+
"gravatar_id": "",
|
|
19500
|
+
"url": "https://api.github.com/users/octocat",
|
|
19501
|
+
"html_url": "https://github.com/octocat",
|
|
19502
|
+
"followers_url": "https://api.github.com/users/octocat/followers",
|
|
19503
|
+
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
|
|
19504
|
+
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
|
|
19505
|
+
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
|
|
19506
|
+
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
|
|
19507
|
+
"organizations_url": "https://api.github.com/users/octocat/orgs",
|
|
19508
|
+
"repos_url": "https://api.github.com/users/octocat/repos",
|
|
19509
|
+
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
|
|
19510
|
+
"received_events_url": "https://api.github.com/users/octocat/received_events",
|
|
19511
|
+
"type": "User",
|
|
19512
|
+
"site_admin": false
|
|
19513
|
+
},
|
|
19514
|
+
"run_attempt": 1,
|
|
19515
|
+
"run_started_at": "2020-01-22T19:33:08Z",
|
|
19516
|
+
"triggering_actor": {
|
|
19517
|
+
"login": "octocat",
|
|
19518
|
+
"id": 1,
|
|
19519
|
+
"node_id": "MDQ6VXNlcjE=",
|
|
19520
|
+
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
|
19521
|
+
"gravatar_id": "",
|
|
19522
|
+
"url": "https://api.github.com/users/octocat",
|
|
19523
|
+
"html_url": "https://github.com/octocat",
|
|
19524
|
+
"followers_url": "https://api.github.com/users/octocat/followers",
|
|
19525
|
+
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
|
|
19526
|
+
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
|
|
19527
|
+
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
|
|
19528
|
+
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
|
|
19529
|
+
"organizations_url": "https://api.github.com/users/octocat/orgs",
|
|
19530
|
+
"repos_url": "https://api.github.com/users/octocat/repos",
|
|
19531
|
+
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
|
|
19532
|
+
"received_events_url": "https://api.github.com/users/octocat/received_events",
|
|
19533
|
+
"type": "User",
|
|
19534
|
+
"site_admin": false
|
|
19535
|
+
},
|
|
19536
|
+
"jobs_url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/jobs",
|
|
19537
|
+
"logs_url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/logs",
|
|
19538
|
+
"check_suite_url": "https://api.github.com/repos/octo-org/octo-repo/check-suites/414944374",
|
|
19539
|
+
"artifacts_url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/artifacts",
|
|
19540
|
+
"cancel_url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/cancel",
|
|
19541
|
+
"rerun_url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642/rerun",
|
|
19542
|
+
"workflow_url": "https://api.github.com/repos/octo-org/octo-repo/actions/workflows/159038",
|
|
19543
|
+
"head_commit": {
|
|
19544
|
+
"id": "acb5820ced9479c074f688cc328bf03f341a511d",
|
|
19545
|
+
"tree_id": "d23f6eedb1e1b9610bbc754ddb5197bfe7271223",
|
|
19546
|
+
"message": "Create linter.yaml",
|
|
19547
|
+
"timestamp": "2020-01-22T19:33:05Z",
|
|
19548
|
+
"author": {
|
|
19549
|
+
"name": "Octo Cat",
|
|
19550
|
+
"email": "octocat@github.com"
|
|
19551
|
+
},
|
|
19552
|
+
"committer": {
|
|
19553
|
+
"name": "GitHub",
|
|
19554
|
+
"email": "noreply@github.com"
|
|
19555
|
+
}
|
|
19556
|
+
},
|
|
19557
|
+
"repository": {
|
|
19558
|
+
"id": 1296269,
|
|
19559
|
+
"node_id": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5",
|
|
19560
|
+
"name": "Hello-World",
|
|
19561
|
+
"full_name": "octocat/Hello-World",
|
|
19562
|
+
"owner": {
|
|
19563
|
+
"login": "octocat",
|
|
19564
|
+
"id": 1,
|
|
19565
|
+
"node_id": "MDQ6VXNlcjE=",
|
|
19566
|
+
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
|
19567
|
+
"gravatar_id": "",
|
|
19568
|
+
"url": "https://api.github.com/users/octocat",
|
|
19569
|
+
"html_url": "https://github.com/octocat",
|
|
19570
|
+
"followers_url": "https://api.github.com/users/octocat/followers",
|
|
19571
|
+
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
|
|
19572
|
+
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
|
|
19573
|
+
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
|
|
19574
|
+
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
|
|
19575
|
+
"organizations_url": "https://api.github.com/users/octocat/orgs",
|
|
19576
|
+
"repos_url": "https://api.github.com/users/octocat/repos",
|
|
19577
|
+
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
|
|
19578
|
+
"received_events_url": "https://api.github.com/users/octocat/received_events",
|
|
19579
|
+
"type": "User",
|
|
19580
|
+
"site_admin": false
|
|
19581
|
+
},
|
|
19582
|
+
"private": false,
|
|
19583
|
+
"html_url": "https://github.com/octocat/Hello-World",
|
|
19584
|
+
"description": "This your first repo!",
|
|
19585
|
+
"fork": false,
|
|
19586
|
+
"url": "https://api.github.com/repos/octocat/Hello-World",
|
|
19587
|
+
"archive_url": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}",
|
|
19588
|
+
"assignees_url": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}",
|
|
19589
|
+
"blobs_url": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}",
|
|
19590
|
+
"branches_url": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}",
|
|
19591
|
+
"collaborators_url": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}",
|
|
19592
|
+
"comments_url": "https://api.github.com/repos/octocat/Hello-World/comments{/number}",
|
|
19593
|
+
"commits_url": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}",
|
|
19594
|
+
"compare_url": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}",
|
|
19595
|
+
"contents_url": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}",
|
|
19596
|
+
"contributors_url": "https://api.github.com/repos/octocat/Hello-World/contributors",
|
|
19597
|
+
"deployments_url": "https://api.github.com/repos/octocat/Hello-World/deployments",
|
|
19598
|
+
"downloads_url": "https://api.github.com/repos/octocat/Hello-World/downloads",
|
|
19599
|
+
"events_url": "https://api.github.com/repos/octocat/Hello-World/events",
|
|
19600
|
+
"forks_url": "https://api.github.com/repos/octocat/Hello-World/forks",
|
|
19601
|
+
"git_commits_url": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}",
|
|
19602
|
+
"git_refs_url": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}",
|
|
19603
|
+
"git_tags_url": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}",
|
|
19604
|
+
"git_url": "git:github.com/octocat/Hello-World.git",
|
|
19605
|
+
"issue_comment_url": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}",
|
|
19606
|
+
"issue_events_url": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}",
|
|
19607
|
+
"issues_url": "https://api.github.com/repos/octocat/Hello-World/issues{/number}",
|
|
19608
|
+
"keys_url": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}",
|
|
19609
|
+
"labels_url": "https://api.github.com/repos/octocat/Hello-World/labels{/name}",
|
|
19610
|
+
"languages_url": "https://api.github.com/repos/octocat/Hello-World/languages",
|
|
19611
|
+
"merges_url": "https://api.github.com/repos/octocat/Hello-World/merges",
|
|
19612
|
+
"milestones_url": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}",
|
|
19613
|
+
"notifications_url": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}",
|
|
19614
|
+
"pulls_url": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}",
|
|
19615
|
+
"releases_url": "https://api.github.com/repos/octocat/Hello-World/releases{/id}",
|
|
19616
|
+
"ssh_url": "git@github.com:octocat/Hello-World.git",
|
|
19617
|
+
"stargazers_url": "https://api.github.com/repos/octocat/Hello-World/stargazers",
|
|
19618
|
+
"statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}",
|
|
19619
|
+
"subscribers_url": "https://api.github.com/repos/octocat/Hello-World/subscribers",
|
|
19620
|
+
"subscription_url": "https://api.github.com/repos/octocat/Hello-World/subscription",
|
|
19621
|
+
"tags_url": "https://api.github.com/repos/octocat/Hello-World/tags",
|
|
19622
|
+
"teams_url": "https://api.github.com/repos/octocat/Hello-World/teams",
|
|
19623
|
+
"trees_url": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}",
|
|
19624
|
+
"hooks_url": "http://api.github.com/repos/octocat/Hello-World/hooks"
|
|
19625
|
+
},
|
|
19626
|
+
"head_repository": {
|
|
19627
|
+
"id": 217723378,
|
|
19628
|
+
"node_id": "MDEwOlJlcG9zaXRvcnkyMTc3MjMzNzg=",
|
|
19629
|
+
"name": "octo-repo",
|
|
19630
|
+
"full_name": "octo-org/octo-repo",
|
|
19631
|
+
"private": true,
|
|
19632
|
+
"owner": {
|
|
19633
|
+
"login": "octocat",
|
|
19634
|
+
"id": 1,
|
|
19635
|
+
"node_id": "MDQ6VXNlcjE=",
|
|
19636
|
+
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
|
19637
|
+
"gravatar_id": "",
|
|
19638
|
+
"url": "https://api.github.com/users/octocat",
|
|
19639
|
+
"html_url": "https://github.com/octocat",
|
|
19640
|
+
"followers_url": "https://api.github.com/users/octocat/followers",
|
|
19641
|
+
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
|
|
19642
|
+
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
|
|
19643
|
+
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
|
|
19644
|
+
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
|
|
19645
|
+
"organizations_url": "https://api.github.com/users/octocat/orgs",
|
|
19646
|
+
"repos_url": "https://api.github.com/users/octocat/repos",
|
|
19647
|
+
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
|
|
19648
|
+
"received_events_url": "https://api.github.com/users/octocat/received_events",
|
|
19649
|
+
"type": "User",
|
|
19650
|
+
"site_admin": false
|
|
19651
|
+
},
|
|
19652
|
+
"html_url": "https://github.com/octo-org/octo-repo",
|
|
19653
|
+
"description": null,
|
|
19654
|
+
"fork": false,
|
|
19655
|
+
"url": "https://api.github.com/repos/octo-org/octo-repo",
|
|
19656
|
+
"forks_url": "https://api.github.com/repos/octo-org/octo-repo/forks",
|
|
19657
|
+
"keys_url": "https://api.github.com/repos/octo-org/octo-repo/keys{/key_id}",
|
|
19658
|
+
"collaborators_url": "https://api.github.com/repos/octo-org/octo-repo/collaborators{/collaborator}",
|
|
19659
|
+
"teams_url": "https://api.github.com/repos/octo-org/octo-repo/teams",
|
|
19660
|
+
"hooks_url": "https://api.github.com/repos/octo-org/octo-repo/hooks",
|
|
19661
|
+
"issue_events_url": "https://api.github.com/repos/octo-org/octo-repo/issues/events{/number}",
|
|
19662
|
+
"events_url": "https://api.github.com/repos/octo-org/octo-repo/events",
|
|
19663
|
+
"assignees_url": "https://api.github.com/repos/octo-org/octo-repo/assignees{/user}",
|
|
19664
|
+
"branches_url": "https://api.github.com/repos/octo-org/octo-repo/branches{/branch}",
|
|
19665
|
+
"tags_url": "https://api.github.com/repos/octo-org/octo-repo/tags",
|
|
19666
|
+
"blobs_url": "https://api.github.com/repos/octo-org/octo-repo/git/blobs{/sha}",
|
|
19667
|
+
"git_tags_url": "https://api.github.com/repos/octo-org/octo-repo/git/tags{/sha}",
|
|
19668
|
+
"git_refs_url": "https://api.github.com/repos/octo-org/octo-repo/git/refs{/sha}",
|
|
19669
|
+
"trees_url": "https://api.github.com/repos/octo-org/octo-repo/git/trees{/sha}",
|
|
19670
|
+
"statuses_url": "https://api.github.com/repos/octo-org/octo-repo/statuses/{sha}",
|
|
19671
|
+
"languages_url": "https://api.github.com/repos/octo-org/octo-repo/languages",
|
|
19672
|
+
"stargazers_url": "https://api.github.com/repos/octo-org/octo-repo/stargazers",
|
|
19673
|
+
"contributors_url": "https://api.github.com/repos/octo-org/octo-repo/contributors",
|
|
19674
|
+
"subscribers_url": "https://api.github.com/repos/octo-org/octo-repo/subscribers",
|
|
19675
|
+
"subscription_url": "https://api.github.com/repos/octo-org/octo-repo/subscription",
|
|
19676
|
+
"commits_url": "https://api.github.com/repos/octo-org/octo-repo/commits{/sha}",
|
|
19677
|
+
"git_commits_url": "https://api.github.com/repos/octo-org/octo-repo/git/commits{/sha}",
|
|
19678
|
+
"comments_url": "https://api.github.com/repos/octo-org/octo-repo/comments{/number}",
|
|
19679
|
+
"issue_comment_url": "https://api.github.com/repos/octo-org/octo-repo/issues/comments{/number}",
|
|
19680
|
+
"contents_url": "https://api.github.com/repos/octo-org/octo-repo/contents/{+path}",
|
|
19681
|
+
"compare_url": "https://api.github.com/repos/octo-org/octo-repo/compare/{base}...{head}",
|
|
19682
|
+
"merges_url": "https://api.github.com/repos/octo-org/octo-repo/merges",
|
|
19683
|
+
"archive_url": "https://api.github.com/repos/octo-org/octo-repo/{archive_format}{/ref}",
|
|
19684
|
+
"downloads_url": "https://api.github.com/repos/octo-org/octo-repo/downloads",
|
|
19685
|
+
"issues_url": "https://api.github.com/repos/octo-org/octo-repo/issues{/number}",
|
|
19686
|
+
"pulls_url": "https://api.github.com/repos/octo-org/octo-repo/pulls{/number}",
|
|
19687
|
+
"milestones_url": "https://api.github.com/repos/octo-org/octo-repo/milestones{/number}",
|
|
19688
|
+
"notifications_url": "https://api.github.com/repos/octo-org/octo-repo/notifications{?since,all,participating}",
|
|
19689
|
+
"labels_url": "https://api.github.com/repos/octo-org/octo-repo/labels{/name}",
|
|
19690
|
+
"releases_url": "https://api.github.com/repos/octo-org/octo-repo/releases{/id}",
|
|
19691
|
+
"deployments_url": "https://api.github.com/repos/octo-org/octo-repo/deployments"
|
|
19692
|
+
}
|
|
19693
|
+
}
|
|
19694
|
+
]
|
|
19695
|
+
}
|
|
19696
|
+
},
|
|
18684
19697
|
"autolink-items": {
|
|
18685
19698
|
"value": [
|
|
18686
19699
|
{
|