Skip to content

Commit be2a924

Browse files
docs: check run conclusion can now bet set to skipped (#78)
Co-authored-by: Octokit Bot <33075676+octokitbot@users.noreply.github.com>
1 parent 73e20ad commit be2a924

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

docs/checks/create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ The time that the check run began. This is a timestamp in [ISO 8601](https://en.
8686
</td></tr>
8787
<tr><td>conclusion</td><td>no</td><td>
8888

89-
**Required if you provide `completed_at` or a `status` of `completed`**. The final conclusion of the check. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, or `action_required`. When the conclusion is `action_required`, additional details should be provided on the site specified by `details_url`.
89+
**Required if you provide `completed_at` or a `status` of `completed`**. The final conclusion of the check. Can be one of `success`, `failure`, `neutral`, `cancelled`, `skipped`, `timed_out`, or `action_required`. When the conclusion is `action_required`, additional details should be provided on the site specified by `details_url`.
9090
**Note:** Providing `conclusion` will automatically set the `status` parameter to `completed`. Only GitHub can change a check run conclusion to `stale`.
9191

9292
</td></tr>

docs/checks/update.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ The current status. Can be one of `queued`, `in_progress`, or `completed`.
8484
</td></tr>
8585
<tr><td>conclusion</td><td>no</td><td>
8686

87-
**Required if you provide `completed_at` or a `status` of `completed`**. The final conclusion of the check. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, or `action_required`.
87+
**Required if you provide `completed_at` or a `status` of `completed`**. The final conclusion of the check. Can be one of `success`, `failure`, `neutral`, `cancelled`, `skipped`, `timed_out`, or `action_required`.
8888
**Note:** Providing `conclusion` will automatically set the `status` parameter to `completed`. Only GitHub can change a check run conclusion to `stale`.
8989

9090
</td></tr>

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"author": "Gregor Martynus (https://twitter.com/gr2m)",
2525
"license": "MIT",
2626
"dependencies": {
27-
"@octokit/types": "^2.14.0",
27+
"@octokit/types": "^2.15.0",
2828
"deprecation": "^2.3.1"
2929
},
3030
"devDependencies": {

scripts/update-endpoints/generated/endpoints.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18623,7 +18623,7 @@
1862318623
},
1862418624
{
1862518625
"name": "conclusion",
18626-
"description": "**Required if you provide `completed_at` or a `status` of `completed`**. The final conclusion of the check. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, or `action_required`. When the conclusion is `action_required`, additional details should be provided on the site specified by `details_url`. \n**Note:** Providing `conclusion` will automatically set the `status` parameter to `completed`. Only GitHub can change a check run conclusion to `stale`.",
18626+
"description": "**Required if you provide `completed_at` or a `status` of `completed`**. The final conclusion of the check. Can be one of `success`, `failure`, `neutral`, `cancelled`, `skipped`, `timed_out`, or `action_required`. When the conclusion is `action_required`, additional details should be provided on the site specified by `details_url`. \n**Note:** Providing `conclusion` will automatically set the `status` parameter to `completed`. Only GitHub can change a check run conclusion to `stale`.",
1862718627
"in": "BODY",
1862818628
"type": "string",
1862918629
"required": false,
@@ -18632,6 +18632,7 @@
1863218632
"failure",
1863318633
"neutral",
1863418634
"cancelled",
18635+
"skipped",
1863518636
"timed_out",
1863618637
"action_required"
1863718638
],
@@ -19082,7 +19083,7 @@
1908219083
},
1908319084
{
1908419085
"name": "conclusion",
19085-
"description": "**Required if you provide `completed_at` or a `status` of `completed`**. The final conclusion of the check. Can be one of `success`, `failure`, `neutral`, `cancelled`, `timed_out`, or `action_required`. \n**Note:** Providing `conclusion` will automatically set the `status` parameter to `completed`. Only GitHub can change a check run conclusion to `stale`.",
19086+
"description": "**Required if you provide `completed_at` or a `status` of `completed`**. The final conclusion of the check. Can be one of `success`, `failure`, `neutral`, `cancelled`, `skipped`, `timed_out`, or `action_required`. \n**Note:** Providing `conclusion` will automatically set the `status` parameter to `completed`. Only GitHub can change a check run conclusion to `stale`.",
1908619087
"in": "BODY",
1908719088
"type": "string",
1908819089
"required": false,
@@ -19091,6 +19092,7 @@
1909119092
"failure",
1909219093
"neutral",
1909319094
"cancelled",
19095+
"skipped",
1909419096
"timed_out",
1909519097
"action_required"
1909619098
],

0 commit comments

Comments
 (0)