Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions github-workflows-kt/api/github-workflows-kt.api
Original file line number Diff line number Diff line change
Expand Up @@ -537,6 +537,10 @@ public final class io/github/typesafegithub/workflows/domain/RunnerType$WindowsL
public static final field INSTANCE Lio/github/typesafegithub/workflows/domain/RunnerType$WindowsLatest;
}

public final class io/github/typesafegithub/workflows/domain/RunnerType$Xcode27 : io/github/typesafegithub/workflows/domain/RunnerType$GitHubHosted {
public static final field INSTANCE Lio/github/typesafegithub/workflows/domain/RunnerType$Xcode27;
}

public abstract interface class io/github/typesafegithub/workflows/domain/Shell {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ public sealed interface RunnerType {

public object Macos14 : GitHubHosted("macos-14")

public object Xcode27 : GitHubHosted("xcode-27")

// Custom runner. Could be an expression `runsOn = expr("github.event.inputs.run-on")`
public data class Custom(
val runsOn: String,
Expand Down
Loading