Skip to content

Commit fd7cc25

Browse files
Commit via running: make Sources/actions
1 parent d04ad1f commit fd7cc25

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

Sources/actions/Types.swift

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9549,6 +9549,10 @@ public enum Components {
95499549
public var labels: [Components.Schemas.RunnerLabel]
95509550
/// - Remark: Generated from `#/components/schemas/runner/ephemeral`.
95519551
public var ephemeral: Swift.Bool?
9552+
/// The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.
9553+
///
9554+
/// - Remark: Generated from `#/components/schemas/runner/version`.
9555+
public var version: Swift.String?
95529556
/// Creates a new `Runner`.
95539557
///
95549558
/// - Parameters:
@@ -9560,6 +9564,7 @@ public enum Components {
95609564
/// - busy:
95619565
/// - labels:
95629566
/// - ephemeral:
9567+
/// - version: The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.
95639568
public init(
95649569
id: Swift.Int,
95659570
runnerGroupId: Swift.Int? = nil,
@@ -9568,7 +9573,8 @@ public enum Components {
95689573
status: Swift.String,
95699574
busy: Swift.Bool,
95709575
labels: [Components.Schemas.RunnerLabel],
9571-
ephemeral: Swift.Bool? = nil
9576+
ephemeral: Swift.Bool? = nil,
9577+
version: Swift.String? = nil
95729578
) {
95739579
self.id = id
95749580
self.runnerGroupId = runnerGroupId
@@ -9578,6 +9584,7 @@ public enum Components {
95789584
self.busy = busy
95799585
self.labels = labels
95809586
self.ephemeral = ephemeral
9587+
self.version = version
95819588
}
95829589
public enum CodingKeys: String, CodingKey {
95839590
case id
@@ -9588,6 +9595,7 @@ public enum Components {
95889595
case busy
95899596
case labels
95909597
case ephemeral
9598+
case version
95919599
}
95929600
}
95939601
/// Runner Application

0 commit comments

Comments
 (0)