@octokit/openapi 7.13.0 → 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.
Files changed (32) hide show
  1. package/generated/api.github.com.deref.json +27 -1
  2. package/generated/api.github.com.json +8 -1
  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 +4 -1
  6. package/generated/ghes-3.2-diff-to-ghes-3.3.json +2 -1
  7. package/generated/ghes-3.2.deref.json +4 -1
  8. package/generated/ghes-3.2.json +2 -1
  9. package/generated/ghes-3.3-diff-to-ghes-3.4.deref.json +1 -1
  10. package/generated/ghes-3.3-diff-to-ghes-3.4.json +1 -1
  11. package/generated/ghes-3.3.deref.json +4 -1
  12. package/generated/ghes-3.3.json +2 -1
  13. package/generated/ghes-3.4-diff-to-ghes-3.5.deref.json +4 -1
  14. package/generated/ghes-3.4-diff-to-ghes-3.5.json +2 -1
  15. package/generated/ghes-3.4.deref.json +4 -1
  16. package/generated/ghes-3.4.json +2 -1
  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 +5 -1
  20. package/generated/ghes-3.5-diff-to-ghes-3.6.json +2 -1
  21. package/generated/ghes-3.5.deref.json +5 -1
  22. package/generated/ghes-3.5.json +2 -1
  23. package/generated/ghes-3.6-anicca-diff-to-api.github.com.deref.json +100 -0
  24. package/generated/ghes-3.6-diff-to-api.github.com.deref.json +8888 -1
  25. package/generated/ghes-3.6-diff-to-api.github.com.json +376 -1
  26. package/generated/ghes-3.6.deref.json +19 -5
  27. package/generated/ghes-3.6.json +16 -4
  28. package/generated/github.ae-diff-to-api.github.com.deref.json +27 -1
  29. package/generated/github.ae-diff-to-api.github.com.json +8 -1
  30. package/generated/github.ae.deref.json +27 -1
  31. package/generated/github.ae.json +8 -1
  32. package/package.json +1 -1
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "openapi": "3.0.3",
3
3
  "info": {
4
- "version": "7.13.0",
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
  {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "openapi": "3.0.3",
3
3
  "info": {
4
- "version": "7.13.0",
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": {
@@ -143550,6 +143550,7 @@
143550
143550
  "node_id",
143551
143551
  "head_branch",
143552
143552
  "run_number",
143553
+ "display_title",
143553
143554
  "event",
143554
143555
  "status",
143555
143556
  "conclusion",
@@ -147986,6 +147987,7 @@
147986
147987
  "node_id",
147987
147988
  "head_branch",
147988
147989
  "run_number",
147990
+ "display_title",
147989
147991
  "event",
147990
147992
  "status",
147991
147993
  "conclusion",
@@ -148023,7 +148025,6 @@
148023
148025
  "run_number": 562,
148024
148026
  "event": "push",
148025
148027
  "status": "queued",
148026
- "conclusion": null,
148027
148028
  "workflow_id": 159038,
148028
148029
  "url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642",
148029
148030
  "html_url": "https://github.com/octo-org/octo-repo/actions/runs/30433642",
@@ -148259,7 +148260,13 @@
148259
148260
  "category": "actions",
148260
148261
  "subcategory": "workflow-runs"
148261
148262
  },
148262
- "x-octokit": {}
148263
+ "x-octokit": {
148264
+ "diff": {
148265
+ "api.github.com": {
148266
+ "type": "changed"
148267
+ }
148268
+ }
148269
+ }
148263
148270
  },
148264
148271
  "delete": {
148265
148272
  "summary": "Delete a workflow run",
@@ -153009,6 +153016,7 @@
153009
153016
  "node_id",
153010
153017
  "head_branch",
153011
153018
  "run_number",
153019
+ "display_title",
153012
153020
  "event",
153013
153021
  "status",
153014
153022
  "conclusion",
@@ -153046,7 +153054,6 @@
153046
153054
  "run_number": 562,
153047
153055
  "event": "push",
153048
153056
  "status": "queued",
153049
- "conclusion": null,
153050
153057
  "workflow_id": 159038,
153051
153058
  "url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642",
153052
153059
  "html_url": "https://github.com/octo-org/octo-repo/actions/runs/30433642",
@@ -153282,7 +153289,13 @@
153282
153289
  "category": "actions",
153283
153290
  "subcategory": "workflow-runs"
153284
153291
  },
153285
- "x-octokit": {}
153292
+ "x-octokit": {
153293
+ "diff": {
153294
+ "api.github.com": {
153295
+ "type": "changed"
153296
+ }
153297
+ }
153298
+ }
153286
153299
  }
153287
153300
  },
153288
153301
  "/repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/jobs": {
@@ -161121,6 +161134,7 @@
161121
161134
  "node_id",
161122
161135
  "head_branch",
161123
161136
  "run_number",
161137
+ "display_title",
161124
161138
  "event",
161125
161139
  "status",
161126
161140
  "conclusion",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "openapi": "3.0.3",
3
3
  "info": {
4
- "version": "7.13.0",
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": {
@@ -22436,7 +22436,13 @@
22436
22436
  "category": "actions",
22437
22437
  "subcategory": "workflow-runs"
22438
22438
  },
22439
- "x-octokit": {}
22439
+ "x-octokit": {
22440
+ "diff": {
22441
+ "api.github.com": {
22442
+ "type": "changed"
22443
+ }
22444
+ }
22445
+ }
22440
22446
  },
22441
22447
  "delete": {
22442
22448
  "summary": "Delete a workflow run",
@@ -22653,7 +22659,13 @@
22653
22659
  "category": "actions",
22654
22660
  "subcategory": "workflow-runs"
22655
22661
  },
22656
- "x-octokit": {}
22662
+ "x-octokit": {
22663
+ "diff": {
22664
+ "api.github.com": {
22665
+ "type": "changed"
22666
+ }
22667
+ }
22668
+ }
22657
22669
  }
22658
22670
  },
22659
22671
  "/repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/jobs": {
@@ -70311,6 +70323,7 @@
70311
70323
  "node_id",
70312
70324
  "head_branch",
70313
70325
  "run_number",
70326
+ "display_title",
70314
70327
  "event",
70315
70328
  "status",
70316
70329
  "conclusion",
@@ -92950,7 +92963,6 @@
92950
92963
  "run_number": 562,
92951
92964
  "event": "push",
92952
92965
  "status": "queued",
92953
- "conclusion": null,
92954
92966
  "workflow_id": 159038,
92955
92967
  "url": "https://api.github.com/repos/octo-org/octo-repo/actions/runs/30433642",
92956
92968
  "html_url": "https://github.com/octo-org/octo-repo/actions/runs/30433642",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "openapi": "3.0.3",
3
3
  "info": {
4
- "version": "7.13.0",
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": {
@@ -63950,6 +63950,11 @@
63950
63950
  "head_repository_id": {
63951
63951
  "type": "integer",
63952
63952
  "example": 5
63953
+ },
63954
+ "display_title": {
63955
+ "type": "string",
63956
+ "example": "Simple Workflow",
63957
+ "description": "The event-specific title associated with the run or the run-name if set, or the value of `run-name` if it is set in the workflow."
63953
63958
  }
63954
63959
  },
63955
63960
  "required": [
@@ -63957,6 +63962,7 @@
63957
63962
  "node_id",
63958
63963
  "head_branch",
63959
63964
  "run_number",
63965
+ "display_title",
63960
63966
  "event",
63961
63967
  "status",
63962
63968
  "conclusion",
@@ -68232,6 +68238,11 @@
68232
68238
  "head_repository_id": {
68233
68239
  "type": "integer",
68234
68240
  "example": 5
68241
+ },
68242
+ "display_title": {
68243
+ "type": "string",
68244
+ "example": "Simple Workflow",
68245
+ "description": "The event-specific title associated with the run or the run-name if set, or the value of `run-name` if it is set in the workflow."
68235
68246
  }
68236
68247
  },
68237
68248
  "required": [
@@ -68239,6 +68250,7 @@
68239
68250
  "node_id",
68240
68251
  "head_branch",
68241
68252
  "run_number",
68253
+ "display_title",
68242
68254
  "event",
68243
68255
  "status",
68244
68256
  "conclusion",
@@ -68275,6 +68287,7 @@
68275
68287
  "path": ".github/workflows/build.yml@main",
68276
68288
  "run_number": 562,
68277
68289
  "event": "push",
68290
+ "display_title": "Update README.md",
68278
68291
  "status": "queued",
68279
68292
  "conclusion": null,
68280
68293
  "workflow_id": 159038,
@@ -72525,6 +72538,11 @@
72525
72538
  "head_repository_id": {
72526
72539
  "type": "integer",
72527
72540
  "example": 5
72541
+ },
72542
+ "display_title": {
72543
+ "type": "string",
72544
+ "example": "Simple Workflow",
72545
+ "description": "The event-specific title associated with the run or the run-name if set, or the value of `run-name` if it is set in the workflow."
72528
72546
  }
72529
72547
  },
72530
72548
  "required": [
@@ -72532,6 +72550,7 @@
72532
72550
  "node_id",
72533
72551
  "head_branch",
72534
72552
  "run_number",
72553
+ "display_title",
72535
72554
  "event",
72536
72555
  "status",
72537
72556
  "conclusion",
@@ -72568,6 +72587,7 @@
72568
72587
  "path": ".github/workflows/build.yml@main",
72569
72588
  "run_number": 562,
72570
72589
  "event": "push",
72590
+ "display_title": "Update README.md",
72571
72591
  "status": "queued",
72572
72592
  "conclusion": null,
72573
72593
  "workflow_id": 159038,
@@ -77000,6 +77020,11 @@
77000
77020
  "head_repository_id": {
77001
77021
  "type": "integer",
77002
77022
  "example": 5
77023
+ },
77024
+ "display_title": {
77025
+ "type": "string",
77026
+ "example": "Simple Workflow",
77027
+ "description": "The event-specific title associated with the run or the run-name if set, or the value of `run-name` if it is set in the workflow."
77003
77028
  }
77004
77029
  },
77005
77030
  "required": [
@@ -77007,6 +77032,7 @@
77007
77032
  "node_id",
77008
77033
  "head_branch",
77009
77034
  "run_number",
77035
+ "display_title",
77010
77036
  "event",
77011
77037
  "status",
77012
77038
  "conclusion",