Skip to content

Commit 7943c6d

Browse files
committed
Commit via running ake Sources/checks
1 parent 3d11a0a commit 7943c6d

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

Sources/checks/Types.swift

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2026,15 +2026,18 @@ public enum Components {
20262026
public var html_url: Swift.String?
20272027
/// - Remark: Generated from `#/components/schemas/check-run/details_url`.
20282028
public var details_url: Swift.String?
2029-
/// The phase of the lifecycle that the check is currently in.
2029+
/// The phase of the lifecycle that the check is currently in. Statuses of waiting, requested, and pending are reserved for GitHub Actions check runs.
20302030
///
20312031
/// - Remark: Generated from `#/components/schemas/check-run/status`.
20322032
@frozen public enum statusPayload: String, Codable, Hashable, Sendable {
20332033
case queued = "queued"
20342034
case in_progress = "in_progress"
20352035
case completed = "completed"
2036+
case waiting = "waiting"
2037+
case requested = "requested"
2038+
case pending = "pending"
20362039
}
2037-
/// The phase of the lifecycle that the check is currently in.
2040+
/// The phase of the lifecycle that the check is currently in. Statuses of waiting, requested, and pending are reserved for GitHub Actions check runs.
20382041
///
20392042
/// - Remark: Generated from `#/components/schemas/check-run/status`.
20402043
public var status: Components.Schemas.check_hyphen_run.statusPayload
@@ -2136,7 +2139,7 @@ public enum Components {
21362139
/// - url:
21372140
/// - html_url:
21382141
/// - details_url:
2139-
/// - status: The phase of the lifecycle that the check is currently in.
2142+
/// - status: The phase of the lifecycle that the check is currently in. Statuses of waiting, requested, and pending are reserved for GitHub Actions check runs.
21402143
/// - conclusion:
21412144
/// - started_at:
21422145
/// - completed_at:
@@ -2409,12 +2412,19 @@ public enum Components {
24092412
///
24102413
/// - Remark: Generated from `#/components/schemas/check-suite/head_sha`.
24112414
public var head_sha: Swift.String
2415+
/// The phase of the lifecycle that the check suite is currently in. Statuses of waiting, requested, and pending are reserved for GitHub Actions check suites.
2416+
///
24122417
/// - Remark: Generated from `#/components/schemas/check-suite/status`.
24132418
@frozen public enum statusPayload: String, Codable, Hashable, Sendable {
24142419
case queued = "queued"
24152420
case in_progress = "in_progress"
24162421
case completed = "completed"
2422+
case waiting = "waiting"
2423+
case requested = "requested"
2424+
case pending = "pending"
24172425
}
2426+
/// The phase of the lifecycle that the check suite is currently in. Statuses of waiting, requested, and pending are reserved for GitHub Actions check suites.
2427+
///
24182428
/// - Remark: Generated from `#/components/schemas/check-suite/status`.
24192429
public var status: Components.Schemas.check_hyphen_suite.statusPayload?
24202430
/// - Remark: Generated from `#/components/schemas/check-suite/conclusion`.
@@ -2465,7 +2475,7 @@ public enum Components {
24652475
/// - node_id:
24662476
/// - head_branch:
24672477
/// - head_sha: The SHA of the head commit that is being checked.
2468-
/// - status:
2478+
/// - status: The phase of the lifecycle that the check suite is currently in. Statuses of waiting, requested, and pending are reserved for GitHub Actions check suites.
24692479
/// - conclusion:
24702480
/// - url:
24712481
/// - before:

0 commit comments

Comments
 (0)