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
+32-4Lines changed: 32 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -7855,6 +7855,10 @@ public enum Components {
7855
7855
///
7856
7856
/// - Remark: Generated from `#/components/schemas/selected-actions-url`.
7857
7857
public typealias SelectedActionsUrl = Swift.String
7858
+
/// Whether actions must be pinned to a full-length commit SHA.
7859
+
///
7860
+
/// - Remark: Generated from `#/components/schemas/sha-pinning-required`.
7861
+
public typealias ShaPinningRequired = Swift.Bool
7858
7862
/// - Remark: Generated from `#/components/schemas/actions-organization-permissions`.
7859
7863
public struct ActionsOrganizationPermissions: Codable, Hashable, Sendable {
7860
7864
/// - Remark: Generated from `#/components/schemas/actions-organization-permissions/enabled_repositories`.
@@ -7867,29 +7871,35 @@ public enum Components {
7867
7871
public var allowedActions: Components.Schemas.AllowedActions?
7868
7872
/// - Remark: Generated from `#/components/schemas/actions-organization-permissions/selected_actions_url`.
7869
7873
public var selectedActionsUrl: Components.Schemas.SelectedActionsUrl?
7874
+
/// - Remark: Generated from `#/components/schemas/actions-organization-permissions/sha_pinning_required`.
7875
+
public var shaPinningRequired: Components.Schemas.ShaPinningRequired?
7870
7876
/// Creates a new `ActionsOrganizationPermissions`.
7871
7877
///
7872
7878
/// - Parameters:
7873
7879
/// - enabledRepositories:
7874
7880
/// - selectedRepositoriesUrl: The API URL to use to get or set the selected repositories that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`.
0 commit comments