Skip to content

Commit

Permalink
GraphQL schema update (#36546)
Browse files Browse the repository at this point in the history
Co-authored-by: rachmari <[email protected]>
  • Loading branch information
Octomerger and rachmari authored Apr 21, 2023
1 parent 23df17d commit 3857ad4
Show file tree
Hide file tree
Showing 7 changed files with 222 additions and 180 deletions.
60 changes: 30 additions & 30 deletions data/graphql/ghae/schema.docs-ghae.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1672,7 +1672,7 @@ type BranchNamePatternParameters {
"""
How this rule will appear to users.
"""
name: String!
name: String

"""
If true, the rule will fail if the pattern matches.
Expand All @@ -1682,12 +1682,12 @@ type BranchNamePatternParameters {
"""
The operator to use for matching.
"""
operator: String
operator: String!

"""
The pattern to match with.
"""
pattern: String
pattern: String!
}

"""
Expand Down Expand Up @@ -4409,7 +4409,7 @@ type CommitAuthorEmailPatternParameters {
"""
How this rule will appear to users.
"""
name: String!
name: String

"""
If true, the rule will fail if the pattern matches.
Expand All @@ -4419,12 +4419,12 @@ type CommitAuthorEmailPatternParameters {
"""
The operator to use for matching.
"""
operator: String
operator: String!

"""
The pattern to match with.
"""
pattern: String
pattern: String!
}

"""
Expand Down Expand Up @@ -4918,7 +4918,7 @@ type CommitMessagePatternParameters {
"""
How this rule will appear to users.
"""
name: String!
name: String

"""
If true, the rule will fail if the pattern matches.
Expand All @@ -4928,12 +4928,12 @@ type CommitMessagePatternParameters {
"""
The operator to use for matching.
"""
operator: String
operator: String!

"""
The pattern to match with.
"""
pattern: String
pattern: String!
}

"""
Expand Down Expand Up @@ -5008,7 +5008,7 @@ type CommitterEmailPatternParameters {
"""
How this rule will appear to users.
"""
name: String!
name: String

"""
If true, the rule will fail if the pattern matches.
Expand All @@ -5018,12 +5018,12 @@ type CommitterEmailPatternParameters {
"""
The operator to use for matching.
"""
operator: String
operator: String!

"""
The pattern to match with.
"""
pattern: String
pattern: String!
}

"""
Expand Down Expand Up @@ -27937,27 +27937,27 @@ type PullRequestParameters {
"""
New, reviewable commits pushed will dismiss previous pull request review approvals.
"""
dismissStaleReviewsOnPush: Boolean
dismissStaleReviewsOnPush: Boolean!

"""
Require an approving review in pull requests that modify files that have a designated code owner.
"""
requireCodeOwnerReview: Boolean
requireCodeOwnerReview: Boolean!

"""
Whether the most recent reviewable push must be approved by someone other than the person who pushed it.
"""
requireLastPushApproval: Boolean
requireLastPushApproval: Boolean!

"""
The number of approving reviews that are required before a pull request can be merged.
"""
requiredApprovingReviewCount: Int
requiredApprovingReviewCount: Int!

"""
All conversations on code must be resolved before a pull request can be merged.
"""
requiredReviewThreadResolution: Boolean
requiredReviewThreadResolution: Boolean!
}

"""
Expand Down Expand Up @@ -30587,14 +30587,14 @@ type RefNameConditionTarget {
"""
Array of ref names or patterns to exclude. The condition will not pass if any of these patterns match.
"""
exclude: [String!]
exclude: [String!]!

"""
Array of ref names or patterns to include. One of these patterns must match
for the condition to pass. Also accepts `~DEFAULT_BRANCH` to include the
default branch or `~ALL` to include all branches.
"""
include: [String!]
include: [String!]!
}

"""
Expand Down Expand Up @@ -36243,13 +36243,13 @@ type RepositoryNameConditionTarget {
"""
Array of repository names or patterns to exclude. The condition will not pass if any of these patterns match.
"""
exclude: [String!]
exclude: [String!]!

"""
Array of repository names or patterns to include. One of these patterns must
match for the condition to pass. Also accepts `~ALL` to include all repositories.
"""
include: [String!]
include: [String!]!

"""
Target changes that match these patterns will be prevented except by those with bypass permissions.
Expand Down Expand Up @@ -37455,7 +37455,7 @@ type RequiredDeploymentsParameters {
"""
The environments that must be successfully deployed to before branches can be merged.
"""
requiredDeploymentEnvironments: [String!]
requiredDeploymentEnvironments: [String!]!
}

"""
Expand Down Expand Up @@ -37507,14 +37507,14 @@ type RequiredStatusChecksParameters {
"""
Status checks that are required.
"""
requiredStatusChecks: [StatusCheckConfiguration!]
requiredStatusChecks: [StatusCheckConfiguration!]!

"""
Whether pull requests targeting a matching branch must be tested with the
latest code. This setting will not take effect unless at least one status
check is enabled.
"""
strictRequiredStatusChecksPolicy: Boolean
strictRequiredStatusChecksPolicy: Boolean!
}

"""
Expand Down Expand Up @@ -39386,12 +39386,12 @@ type StatusCheckConfiguration {
"""
The status check context name that must be present on the commit.
"""
context: String
context: String!

"""
The optional integration ID that this status check must originate from.
"""
integrationId: Int!
integrationId: Int
}

"""
Expand Down Expand Up @@ -39887,7 +39887,7 @@ type TagNamePatternParameters {
"""
How this rule will appear to users.
"""
name: String!
name: String

"""
If true, the rule will fail if the pattern matches.
Expand All @@ -39897,12 +39897,12 @@ type TagNamePatternParameters {
"""
The operator to use for matching.
"""
operator: String
operator: String!

"""
The pattern to match with.
"""
pattern: String
pattern: String!
}

"""
Expand Down Expand Up @@ -44320,7 +44320,7 @@ type UpdateParameters {
"""
Branch can pull changes from its upstream repository
"""
updateAllowsFetchAndMerge: Boolean
updateAllowsFetchAndMerge: Boolean!
}

"""
Expand Down
Loading

0 comments on commit 3857ad4

Please sign in to comment.