Skip to content

Commit 3d11a0a

Browse files
committed
Commit via running ake Sources/actions
1 parent 87b9fa7 commit 3d11a0a

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

Sources/actions/Types.swift

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7040,6 +7040,8 @@ public enum Components {
70407040
case in_progress = "in_progress"
70417041
case completed = "completed"
70427042
case waiting = "waiting"
7043+
case requested = "requested"
7044+
case pending = "pending"
70437045
}
70447046
/// The phase of the lifecycle that the job is currently in.
70457047
///
@@ -9070,7 +9072,7 @@ public enum Components {
90709072
///
90719073
/// - Remark: Generated from `#/components/parameters/event`.
90729074
public typealias event = Swift.String
9073-
/// 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`.
9075+
/// 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 Actions can set a status of `waiting`, `pending`, or `requested`.
90749076
///
90759077
/// - Remark: Generated from `#/components/parameters/workflow-run-status`.
90769078
@frozen public enum workflow_hyphen_run_hyphen_status: String, Codable, Hashable, Sendable {
@@ -21217,7 +21219,7 @@ public enum Operations {
2121721219
case waiting = "waiting"
2121821220
case pending = "pending"
2121921221
}
21220-
/// 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`.
21222+
/// 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 Actions can set a status of `waiting`, `pending`, or `requested`.
2122121223
///
2122221224
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/actions/runs/GET/query/status`.
2122321225
public var status: Components.Parameters.workflow_hyphen_run_hyphen_status?
@@ -21251,7 +21253,7 @@ public enum Operations {
2125121253
/// - actor: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run.
2125221254
/// - branch: Returns workflow runs associated with a branch. Use the name of the branch of the `push`.
2125321255
/// - event: 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/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows)."
21254-
/// - status: 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`.
21256+
/// - status: 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 Actions can set a status of `waiting`, `pending`, or `requested`.
2125521257
/// - per_page: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
2125621258
/// - page: The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
2125721259
/// - created: 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/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)."
@@ -27170,7 +27172,7 @@ public enum Operations {
2717027172
case waiting = "waiting"
2717127173
case pending = "pending"
2717227174
}
27173-
/// 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`.
27175+
/// 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 Actions can set a status of `waiting`, `pending`, or `requested`.
2717427176
///
2717527177
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs/GET/query/status`.
2717627178
public var status: Components.Parameters.workflow_hyphen_run_hyphen_status?
@@ -27204,7 +27206,7 @@ public enum Operations {
2720427206
/// - actor: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run.
2720527207
/// - branch: Returns workflow runs associated with a branch. Use the name of the branch of the `push`.
2720627208
/// - event: 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/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows)."
27207-
/// - status: 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`.
27209+
/// - status: 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 Actions can set a status of `waiting`, `pending`, or `requested`.
2720827210
/// - per_page: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
2720927211
/// - page: The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
2721027212
/// - created: 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/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)."

0 commit comments

Comments
 (0)