Skip to content

Commit

Permalink
Generated by GitHub Actions (ts / generate)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 22, 2023
1 parent 4ddd866 commit 98ed9f6
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/generated/graphql-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -22124,14 +22124,14 @@ export type RequirableByPullRequestIsRequiredArgs = {
pullRequestNumber?: InputMaybe<Scalars['Int']['input']>;
};

/** 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<Scalars['String']['output']>;
};

/** 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<Scalars['String']['input']>;
Expand All @@ -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. */
Expand All @@ -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<StatusCheckConfigurationInput>;
Expand Down

0 comments on commit 98ed9f6

Please sign in to comment.