@octokit/openapi 7.7.0 → 7.9.1

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 (33) hide show
  1. package/generated/api.github.com.deref.json +806 -77
  2. package/generated/api.github.com.json +80 -25
  3. package/generated/ghes-3.2-diff-to-api.github.com.deref.json +1 -1
  4. package/generated/ghes-3.2-diff-to-api.github.com.json +1 -1
  5. package/generated/ghes-3.2-diff-to-ghes-3.3.deref.json +475 -23
  6. package/generated/ghes-3.2-diff-to-ghes-3.3.json +36 -6
  7. package/generated/ghes-3.2.deref.json +585 -35
  8. package/generated/ghes-3.2.json +48 -17
  9. package/generated/ghes-3.3-diff-to-ghes-3.4.deref.json +19 -3
  10. package/generated/ghes-3.3-diff-to-ghes-3.4.json +14 -3
  11. package/generated/ghes-3.3.deref.json +592 -36
  12. package/generated/ghes-3.3.json +55 -18
  13. package/generated/ghes-3.4-diff-to-ghes-3.5.deref.json +145 -1
  14. package/generated/ghes-3.4-diff-to-ghes-3.5.json +5 -1
  15. package/generated/ghes-3.4.deref.json +620 -36
  16. package/generated/ghes-3.4.json +55 -18
  17. package/generated/ghes-3.5-diff-to-api.github.com.deref.json +1 -1
  18. package/generated/ghes-3.5-diff-to-api.github.com.json +1 -1
  19. package/generated/ghes-3.5-diff-to-ghes-3.6.deref.json +537 -23
  20. package/generated/ghes-3.5-diff-to-ghes-3.6.json +39 -6
  21. package/generated/ghes-3.5.deref.json +633 -36
  22. package/generated/ghes-3.5.json +55 -18
  23. package/generated/ghes-3.6-anicca-diff-to-api.github.com.deref.json +51 -0
  24. package/generated/ghes-3.6-diff-to-api.github.com.deref.json +9586 -496
  25. package/generated/ghes-3.6-diff-to-api.github.com.json +927 -20
  26. package/generated/ghes-3.6.deref.json +647 -38
  27. package/generated/ghes-3.6.json +69 -20
  28. package/generated/github.ae-anicca-diff-to-api.github.com.deref.json +35 -0
  29. package/generated/github.ae-diff-to-api.github.com.deref.json +446 -18
  30. package/generated/github.ae-diff-to-api.github.com.json +43 -7
  31. package/generated/github.ae.deref.json +556 -30
  32. package/generated/github.ae.json +55 -18
  33. package/package.json +1 -1
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "openapi": "3.0.3",
3
3
  "info": {
4
- "version": "7.7.0",
4
+ "version": "7.9.1",
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": {
@@ -5979,6 +5979,207 @@
5979
5979
  }
5980
5980
  }
5981
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
+ },
5982
6183
  "/repos/{owner}/{repo}/autolinks": {
5983
6184
  "get": {
5984
6185
  "summary": "List all autolinks of a repository",
@@ -6069,6 +6270,11 @@
6069
6270
  "url_template": {
6070
6271
  "type": "string",
6071
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."
6072
6278
  }
6073
6279
  },
6074
6280
  "required": [
@@ -6080,7 +6286,8 @@
6080
6286
  "default": {
6081
6287
  "value": {
6082
6288
  "key_prefix": "TICKET-",
6083
- "url_template": "https://example.com/TICKET?query=<num>"
6289
+ "url_template": "https://example.com/TICKET?query=<num>",
6290
+ "is_alphanumeric": true
6084
6291
  }
6085
6292
  }
6086
6293
  }
@@ -9166,6 +9373,101 @@
9166
9373
  "type": "string"
9167
9374
  }
9168
9375
  },
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,
9381
+ "schema": {
9382
+ "type": "string"
9383
+ }
9384
+ },
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`.",
9388
+ "in": "query",
9389
+ "required": false,
9390
+ "schema": {
9391
+ "type": "string"
9392
+ }
9393
+ },
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).\"",
9397
+ "in": "query",
9398
+ "required": false,
9399
+ "schema": {
9400
+ "type": "string"
9401
+ }
9402
+ },
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,
9408
+ "schema": {
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
+ ]
9425
+ }
9426
+ },
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,
9432
+ "schema": {
9433
+ "type": "string",
9434
+ "format": "date-time"
9435
+ }
9436
+ },
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
+ },
9169
9471
  "autolink-id": {
9170
9472
  "name": "autolink_id",
9171
9473
  "description": "The unique identifier of the autolink.",
@@ -11728,28 +12030,227 @@
11728
12030
  "search"
11729
12031
  ]
11730
12032
  },
11731
- "rate": {
11732
- "$ref": "#/components/schemas/rate-limit"
11733
- }
11734
- },
11735
- "required": [
11736
- "rate",
11737
- "resources"
11738
- ]
11739
- },
11740
- "actions-cache-usage-policy-for-repository": {
11741
- "title": "Actions cache usage policy for repository",
11742
- "description": "GitHub Actions cache usage policy for repository.",
11743
- "type": "object",
11744
- "properties": {
11745
- "repo_cache_size_limit_in_gb": {
11746
- "description": "The size limit for the sum of all caches, in gigabytes.",
12033
+ "rate": {
12034
+ "$ref": "#/components/schemas/rate-limit"
12035
+ }
12036
+ },
12037
+ "required": [
12038
+ "rate",
12039
+ "resources"
12040
+ ]
12041
+ },
12042
+ "actions-cache-usage-policy-for-repository": {
12043
+ "title": "Actions cache usage policy for repository",
12044
+ "description": "GitHub Actions cache usage policy for repository.",
12045
+ "type": "object",
12046
+ "properties": {
12047
+ "repo_cache_size_limit_in_gb": {
12048
+ "description": "The size limit for the sum of all caches, in gigabytes.",
12049
+ "type": "integer",
12050
+ "example": 14
12051
+ }
12052
+ },
12053
+ "required": [
12054
+ "repo_cache_size_limit_in_gb"
12055
+ ]
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": {
11747
12224
  "type": "integer",
11748
- "example": 14
12225
+ "example": 5
11749
12226
  }
11750
12227
  },
11751
12228
  "required": [
11752
- "repo_cache_size_limit_in_gb"
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"
11753
12254
  ]
11754
12255
  },
11755
12256
  "autolink": {
@@ -14829,6 +15330,10 @@
14829
15330
  "starred_at": {
14830
15331
  "type": "string",
14831
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"
14832
15337
  }
14833
15338
  },
14834
15339
  "required": [
@@ -15672,6 +16177,179 @@
15672
16177
  "used"
15673
16178
  ]
15674
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
+ },
15675
16353
  "code-scanning-analysis-tool-name": {
15676
16354
  "type": "string",
15677
16355
  "description": "The name of the tool used to generate the code scanning analysis."
@@ -16715,6 +17393,10 @@
16715
17393
  "starred_at": {
16716
17394
  "type": "string",
16717
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"
16718
17400
  }
16719
17401
  },
16720
17402
  "required": [
@@ -18787,6 +19469,231 @@
18787
19469
  "repo_cache_size_limit_in_gb": 14
18788
19470
  }
18789
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
+ },
18790
19697
  "autolink-items": {
18791
19698
  "value": [
18792
19699
  {