1
0
mirror of synced 2025-12-25 02:17:36 -05:00

Action ran graphql script"update-files"

This commit is contained in:
rachmari
2021-05-03 16:38:16 +00:00
committed by GitHub
parent 71e151dc36
commit f55cff4a2b
5 changed files with 22 additions and 22 deletions

View File

@@ -15337,7 +15337,7 @@ type Mutation {
): UpdateEnterpriseAllowPrivateRepositoryForkingSettingPayload
"""
Sets the default repository permission for organizations in an enterprise.
Sets the base repository permission for organizations in an enterprise.
"""
updateEnterpriseDefaultRepositoryPermissionSetting(
"""
@@ -35348,12 +35348,12 @@ input UpdateEnterpriseDefaultRepositoryPermissionSettingInput {
clientMutationId: String
"""
The ID of the enterprise on which to set the default repository permission setting.
The ID of the enterprise on which to set the base repository permission setting.
"""
enterpriseId: ID! @possibleTypes(concreteTypes: ["Enterprise"])
"""
The value for the default repository permission setting on the enterprise.
The value for the base repository permission setting on the enterprise.
"""
settingValue: EnterpriseDefaultRepositoryPermissionSettingValue!
}
@@ -35368,12 +35368,12 @@ type UpdateEnterpriseDefaultRepositoryPermissionSettingPayload {
clientMutationId: String
"""
The enterprise with the updated default repository permission setting.
The enterprise with the updated base repository permission setting.
"""
enterprise: Enterprise
"""
A message confirming the result of updating the default repository permission setting.
A message confirming the result of updating the base repository permission setting.
"""
message: String
}