You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sources/actions/Types.swift
+7-5Lines changed: 7 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -7040,6 +7040,8 @@ public enum Components {
7040
7040
case in_progress = "in_progress"
7041
7041
case completed = "completed"
7042
7042
case waiting = "waiting"
7043
+
case requested = "requested"
7044
+
case pending = "pending"
7043
7045
}
7044
7046
/// The phase of the lifecycle that the job is currently in.
7045
7047
///
@@ -9070,7 +9072,7 @@ public enum Components {
9070
9072
///
9071
9073
/// - Remark: Generated from `#/components/parameters/event`.
9072
9074
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`.
9074
9076
///
9075
9077
/// - Remark: Generated from `#/components/parameters/workflow-run-status`.
9076
9078
@frozen public enum workflow_hyphen_run_hyphen_status: String, Codable, Hashable, Sendable {
@@ -21217,7 +21219,7 @@ public enum Operations {
21217
21219
case waiting = "waiting"
21218
21220
case pending = "pending"
21219
21221
}
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`.
21221
21223
///
21222
21224
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/actions/runs/GET/query/status`.
21223
21225
public var status: Components.Parameters.workflow_hyphen_run_hyphen_status?
@@ -21251,7 +21253,7 @@ public enum Operations {
21251
21253
/// - actor: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run.
21252
21254
/// - branch: Returns workflow runs associated with a branch. Use the name of the branch of the `push`.
21253
21255
/// - 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`.
21255
21257
/// - 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)."
21256
21258
/// - 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)."
21257
21259
/// - 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 {
27170
27172
case waiting = "waiting"
27171
27173
case pending = "pending"
27172
27174
}
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`.
27174
27176
///
27175
27177
/// - Remark: Generated from `#/paths/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs/GET/query/status`.
27176
27178
public var status: Components.Parameters.workflow_hyphen_run_hyphen_status?
@@ -27204,7 +27206,7 @@ public enum Operations {
27204
27206
/// - actor: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run.
27205
27207
/// - branch: Returns workflow runs associated with a branch. Use the name of the branch of the `push`.
27206
27208
/// - 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`.
27208
27210
/// - 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)."
27209
27211
/// - 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)."
27210
27212
/// - 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