typescript-github-action-template 0.2.35 → 0.2.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -3543,6 +3543,21 @@ export type ConvertedToDiscussionEvent = Node & {
|
|
|
3543
3543
|
/** The Node ID of the ConvertedToDiscussionEvent object */
|
|
3544
3544
|
id: Scalars['ID']['output'];
|
|
3545
3545
|
};
|
|
3546
|
+
/** Request Copilot code review for new pull requests automatically if the author has access to Copilot code review. */
|
|
3547
|
+
export type CopilotCodeReviewParameters = {
|
|
3548
|
+
__typename: 'CopilotCodeReviewParameters';
|
|
3549
|
+
/** Copilot automatically reviews draft pull requests before they are marked as ready for review. */
|
|
3550
|
+
reviewDraftPullRequests: Scalars['Boolean']['output'];
|
|
3551
|
+
/** Copilot automatically reviews each new push to the pull request. */
|
|
3552
|
+
reviewOnPush: Scalars['Boolean']['output'];
|
|
3553
|
+
};
|
|
3554
|
+
/** Request Copilot code review for new pull requests automatically if the author has access to Copilot code review. */
|
|
3555
|
+
export type CopilotCodeReviewParametersInput = {
|
|
3556
|
+
/** Copilot automatically reviews draft pull requests before they are marked as ready for review. */
|
|
3557
|
+
reviewDraftPullRequests?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3558
|
+
/** Copilot automatically reviews each new push to the pull request. */
|
|
3559
|
+
reviewOnPush?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3560
|
+
};
|
|
3546
3561
|
/** Copilot endpoint information */
|
|
3547
3562
|
export type CopilotEndpoints = {
|
|
3548
3563
|
__typename: 'CopilotEndpoints';
|
|
@@ -25508,6 +25523,8 @@ export type RepositoryRuleType =
|
|
|
25508
25523
|
| 'COMMIT_AUTHOR_EMAIL_PATTERN'
|
|
25509
25524
|
/** Commit message pattern */
|
|
25510
25525
|
| 'COMMIT_MESSAGE_PATTERN'
|
|
25526
|
+
/** Request Copilot code review for new pull requests automatically if the author has access to Copilot code review. */
|
|
25527
|
+
| 'COPILOT_CODE_REVIEW'
|
|
25511
25528
|
/** Only allow users with bypass permission to create matching refs. */
|
|
25512
25529
|
| 'CREATION'
|
|
25513
25530
|
/** Only allow users with bypass permissions to delete matching refs. */
|
|
@@ -26475,7 +26492,7 @@ export type RuleEnforcement =
|
|
|
26475
26492
|
*/
|
|
26476
26493
|
| 'EVALUATE';
|
|
26477
26494
|
/** Types which can be parameters for `RepositoryRule` objects. */
|
|
26478
|
-
export type RuleParameters = BranchNamePatternParameters | CodeScanningParameters | CommitAuthorEmailPatternParameters | CommitMessagePatternParameters | CommitterEmailPatternParameters | FileExtensionRestrictionParameters | FilePathRestrictionParameters | MaxFilePathLengthParameters | MaxFileSizeParameters | MergeQueueParameters | PullRequestParameters | RequiredDeploymentsParameters | RequiredStatusChecksParameters | TagNamePatternParameters | UpdateParameters | WorkflowsParameters;
|
|
26495
|
+
export type RuleParameters = BranchNamePatternParameters | CodeScanningParameters | CommitAuthorEmailPatternParameters | CommitMessagePatternParameters | CommitterEmailPatternParameters | CopilotCodeReviewParameters | FileExtensionRestrictionParameters | FilePathRestrictionParameters | MaxFilePathLengthParameters | MaxFileSizeParameters | MergeQueueParameters | PullRequestParameters | RequiredDeploymentsParameters | RequiredStatusChecksParameters | TagNamePatternParameters | UpdateParameters | WorkflowsParameters;
|
|
26479
26496
|
/** Specifies the parameters for a `RepositoryRule` object. Only one of the fields should be specified. */
|
|
26480
26497
|
export type RuleParametersInput = {
|
|
26481
26498
|
/** Parameters used for the `branch_name_pattern` rule type */
|
|
@@ -26488,6 +26505,8 @@ export type RuleParametersInput = {
|
|
|
26488
26505
|
commitMessagePattern?: InputMaybe<CommitMessagePatternParametersInput>;
|
|
26489
26506
|
/** Parameters used for the `committer_email_pattern` rule type */
|
|
26490
26507
|
committerEmailPattern?: InputMaybe<CommitterEmailPatternParametersInput>;
|
|
26508
|
+
/** Parameters used for the `copilot_code_review` rule type */
|
|
26509
|
+
copilotCodeReview?: InputMaybe<CopilotCodeReviewParametersInput>;
|
|
26491
26510
|
/** Parameters used for the `file_extension_restriction` rule type */
|
|
26492
26511
|
fileExtensionRestriction?: InputMaybe<FileExtensionRestrictionParametersInput>;
|
|
26493
26512
|
/** Parameters used for the `file_path_restriction` rule type */
|
package/package.json
CHANGED