diff --git a/src/generated/graphql-types.ts b/src/generated/graphql-types.ts index e0fbf5d0..43e2624e 100644 --- a/src/generated/graphql-types.ts +++ b/src/generated/graphql-types.ts @@ -21674,17 +21674,17 @@ export enum RepositoryRuleType { Creation = 'CREATION', /** Only allow users with bypass permissions to delete matching refs. */ Deletion = 'DELETION', - /** Prevent users with push access from force pushing to branches. */ + /** Prevent users with push access from force pushing to refs. */ NonFastForward = 'NON_FAST_FORWARD', /** Require all commits be made to a non-target branch and submitted via a pull request before they can be merged. */ PullRequest = 'PULL_REQUEST', - /** Choose which environments must be successfully deployed to before branches can be merged into a branch that matches this rule. */ + /** Choose which environments must be successfully deployed to before refs can be merged into a branch that matches this rule. */ RequiredDeployments = 'REQUIRED_DEPLOYMENTS', - /** Prevent merge commits from being pushed to matching branches. */ + /** Prevent merge commits from being pushed to matching refs. */ RequiredLinearHistory = 'REQUIRED_LINEAR_HISTORY', - /** Commits pushed to matching branches must have verified signatures. */ + /** Commits pushed to matching refs must have verified signatures. */ RequiredSignatures = 'REQUIRED_SIGNATURES', - /** Choose which status checks must pass before branches can be merged into a branch that matches this rule. When enabled, commits must first be pushed to another branch, then merged or pushed directly to a branch that matches this rule after status checks have passed. */ + /** Choose which status checks must pass before branches can be merged into a branch that matches this rule. When enabled, commits must first be pushed to another branch, then merged or pushed directly to a ref that matches this rule after status checks have passed. */ RequiredStatusChecks = 'REQUIRED_STATUS_CHECKS', /** Tag name pattern */ TagNamePattern = 'TAG_NAME_PATTERN', @@ -22124,14 +22124,14 @@ export type RequirableByPullRequestIsRequiredArgs = { pullRequestNumber?: InputMaybe; }; -/** Choose which environments must be successfully deployed to before branches can be merged into a branch that matches this rule. */ +/** Choose which environments must be successfully deployed to before refs can be merged into a branch that matches this rule. */ export type RequiredDeploymentsParameters = { __typename?: 'RequiredDeploymentsParameters'; /** The environments that must be successfully deployed to before branches can be merged. */ requiredDeploymentEnvironments: Array; }; -/** Choose which environments must be successfully deployed to before branches can be merged into a branch that matches this rule. */ +/** Choose which environments must be successfully deployed to before refs can be merged into a branch that matches this rule. */ export type RequiredDeploymentsParametersInput = { /** The environments that must be successfully deployed to before branches can be merged. */ requiredDeploymentEnvironments: Array; @@ -22154,7 +22154,7 @@ export type RequiredStatusCheckInput = { context: Scalars['String']['input']; }; -/** Choose which status checks must pass before branches can be merged into a branch that matches this rule. When enabled, commits must first be pushed to another branch, then merged or pushed directly to a branch that matches this rule after status checks have passed. */ +/** Choose which status checks must pass before branches can be merged into a branch that matches this rule. When enabled, commits must first be pushed to another branch, then merged or pushed directly to a ref that matches this rule after status checks have passed. */ export type RequiredStatusChecksParameters = { __typename?: 'RequiredStatusChecksParameters'; /** Status checks that are required. */ @@ -22163,7 +22163,7 @@ export type RequiredStatusChecksParameters = { strictRequiredStatusChecksPolicy: Scalars['Boolean']['output']; }; -/** Choose which status checks must pass before branches can be merged into a branch that matches this rule. When enabled, commits must first be pushed to another branch, then merged or pushed directly to a branch that matches this rule after status checks have passed. */ +/** Choose which status checks must pass before branches can be merged into a branch that matches this rule. When enabled, commits must first be pushed to another branch, then merged or pushed directly to a ref that matches this rule after status checks have passed. */ export type RequiredStatusChecksParametersInput = { /** Status checks that are required. */ requiredStatusChecks: Array;