@@ -42,21 +42,6 @@ type AcceptTopicSuggestionPayload {
42
42
topic: Topic
43
43
}
44
44
45
- """The possible capabilities for action executions setting."""
46
- enum ActionExecutionCapabilitySetting {
47
- """All action executions are disabled."""
48
- DISABLED
49
-
50
- """All action executions are enabled."""
51
- ALL_ACTIONS
52
-
53
- """Only actions defined within the repo are allowed."""
54
- LOCAL_ACTIONS_ONLY
55
-
56
- """Organization administrators action execution capabilities."""
57
- NO_POLICY
58
- }
59
-
60
45
"""
61
46
Represents an object which can take actions on GitHub. Typically a User or Bot.
62
47
"""
@@ -4866,28 +4851,6 @@ type EnterpriseOutsideCollaboratorEdge {
4866
4851
4867
4852
"""Enterprise information only visible to enterprise owners."""
4868
4853
type EnterpriseOwnerInfo {
4869
- """
4870
- A list of enterprise organizations configured with the provided action execution capabilities setting value.
4871
- """
4872
- actionExecutionCapabilitySettingOrganizations(
4873
- """Returns the elements in the list that come after the specified cursor."""
4874
- after: String
4875
-
4876
- """
4877
- Returns the elements in the list that come before the specified cursor.
4878
- """
4879
- before: String
4880
-
4881
- """Returns the first _n_ elements from the list."""
4882
- first: Int
4883
-
4884
- """Returns the last _n_ elements from the list."""
4885
- last: Int
4886
-
4887
- """Ordering options for organizations with this setting."""
4888
- orderBy: OrganizationOrder = {field: LOGIN, direction: ASC}
4889
- ): OrganizationConnection!
4890
-
4891
4854
"""A list of all of the administrators for this enterprise."""
4892
4855
admins(
4893
4856
"""The search string to look for."""
@@ -9476,9 +9439,6 @@ type Mutation {
9476
9439
"""Modifies the settings of an existing check suite"""
9477
9440
updateCheckSuitePreferences(input: UpdateCheckSuitePreferencesInput!): UpdateCheckSuitePreferencesPayload
9478
9441
9479
- """Sets the action execution capability setting for an enterprise."""
9480
- updateEnterpriseActionExecutionCapabilitySetting(input: UpdateEnterpriseActionExecutionCapabilitySettingInput!): UpdateEnterpriseActionExecutionCapabilitySettingPayload
9481
-
9482
9442
"""Updates the role of an enterprise administrator."""
9483
9443
updateEnterpriseAdministratorRole(input: UpdateEnterpriseAdministratorRoleInput!): UpdateEnterpriseAdministratorRolePayload
9484
9444
@@ -22647,40 +22607,6 @@ type UpdateCheckSuitePreferencesPayload {
22647
22607
repository: Repository
22648
22608
}
22649
22609
22650
- """
22651
- Autogenerated input type of UpdateEnterpriseActionExecutionCapabilitySetting
22652
- """
22653
- input UpdateEnterpriseActionExecutionCapabilitySettingInput {
22654
- """
22655
- The ID of the enterprise on which to set the members can create repositories setting.
22656
- """
22657
- enterpriseId: ID!
22658
-
22659
- """
22660
- The value for the action execution capability setting on the enterprise.
22661
- """
22662
- capability: ActionExecutionCapabilitySetting!
22663
-
22664
- """A unique identifier for the client performing the mutation."""
22665
- clientMutationId: String
22666
- }
22667
-
22668
- """
22669
- Autogenerated return type of UpdateEnterpriseActionExecutionCapabilitySetting
22670
- """
22671
- type UpdateEnterpriseActionExecutionCapabilitySettingPayload {
22672
- """A unique identifier for the client performing the mutation."""
22673
- clientMutationId: String
22674
-
22675
- """The enterprise with the updated action execution capability setting."""
22676
- enterprise: Enterprise
22677
-
22678
- """
22679
- A message confirming the result of updating the action execution capability setting.
22680
- """
22681
- message: String
22682
- }
22683
-
22684
22610
"""Autogenerated input type of UpdateEnterpriseAdministratorRole"""
22685
22611
input UpdateEnterpriseAdministratorRoleInput {
22686
22612
"""The ID of the Enterprise which the admin belongs to."""
0 commit comments