typescript-github-action-template 0.2.9 → 0.2.11
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.
- package/dist/__graphql__/graphql.d.ts +305 -8
- package/package.json +4 -4
|
@@ -155,6 +155,15 @@ export type AcceptTopicSuggestionInput = {
|
|
|
155
155
|
*/
|
|
156
156
|
repositoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
157
157
|
};
|
|
158
|
+
/** Autogenerated input type of AccessUserNamespaceRepository */
|
|
159
|
+
export type AccessUserNamespaceRepositoryInput = {
|
|
160
|
+
/** A unique identifier for the client performing the mutation. */
|
|
161
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
162
|
+
/** The ID of the enterprise owning the user namespace repository. */
|
|
163
|
+
enterpriseId: Scalars['ID']['input'];
|
|
164
|
+
/** The ID of the user namespace repository to access. */
|
|
165
|
+
repositoryId: Scalars['ID']['input'];
|
|
166
|
+
};
|
|
158
167
|
/** The actor's type. */
|
|
159
168
|
export type ActorType =
|
|
160
169
|
/** Indicates a team actor. */
|
|
@@ -412,6 +421,19 @@ export type AddStarInput = {
|
|
|
412
421
|
/** The Starrable ID to star. */
|
|
413
422
|
starrableId: Scalars['ID']['input'];
|
|
414
423
|
};
|
|
424
|
+
/** Autogenerated input type of AddSubIssue */
|
|
425
|
+
export type AddSubIssueInput = {
|
|
426
|
+
/** A unique identifier for the client performing the mutation. */
|
|
427
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
428
|
+
/** The id of the issue. */
|
|
429
|
+
issueId: Scalars['ID']['input'];
|
|
430
|
+
/** Option to replace parent issue if one already exists */
|
|
431
|
+
replaceParent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
432
|
+
/** The id of the sub-issue. */
|
|
433
|
+
subIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
434
|
+
/** The url of the sub-issue. */
|
|
435
|
+
subIssueUrl?: InputMaybe<Scalars['String']['input']>;
|
|
436
|
+
};
|
|
415
437
|
/** Autogenerated input type of AddUpvote */
|
|
416
438
|
export type AddUpvoteInput = {
|
|
417
439
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -779,6 +801,8 @@ export type CloseDiscussionInput = {
|
|
|
779
801
|
export type CloseIssueInput = {
|
|
780
802
|
/** A unique identifier for the client performing the mutation. */
|
|
781
803
|
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
804
|
+
/** ID of the issue that this is a duplicate of. */
|
|
805
|
+
duplicateIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
782
806
|
/** ID of the issue to be closed. */
|
|
783
807
|
issueId: Scalars['ID']['input'];
|
|
784
808
|
/** The reason the issue is to be closed. */
|
|
@@ -1008,6 +1032,12 @@ export type ConvertPullRequestToDraftInput = {
|
|
|
1008
1032
|
/** ID of the pull request to convert to draft */
|
|
1009
1033
|
pullRequestId: Scalars['ID']['input'];
|
|
1010
1034
|
};
|
|
1035
|
+
/** The type of the activity that was performed. */
|
|
1036
|
+
export type CopilotLimitedFeature =
|
|
1037
|
+
/** Copilot Chat. */
|
|
1038
|
+
'CHAT'
|
|
1039
|
+
/** Copilot IDE completions. */
|
|
1040
|
+
| 'COMPLETIONS';
|
|
1011
1041
|
/** Autogenerated input type of CopyProjectV2 */
|
|
1012
1042
|
export type CopyProjectV2Input = {
|
|
1013
1043
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -1260,6 +1290,8 @@ export type CreateIssueInput = {
|
|
|
1260
1290
|
labelIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1261
1291
|
/** The Node ID of the milestone for this issue. */
|
|
1262
1292
|
milestoneId?: InputMaybe<Scalars['ID']['input']>;
|
|
1293
|
+
/** The Node ID of the parent issue to add this new issue to */
|
|
1294
|
+
parentIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
1263
1295
|
/** An array of Node IDs for projects associated with this issue. */
|
|
1264
1296
|
projectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1265
1297
|
/** The Node ID of the repository. */
|
|
@@ -1453,6 +1485,13 @@ export type CreateRepositoryRulesetInput = {
|
|
|
1453
1485
|
/** The target of the ruleset. */
|
|
1454
1486
|
target?: InputMaybe<RepositoryRulesetTarget>;
|
|
1455
1487
|
};
|
|
1488
|
+
/** Autogenerated input type of CreateSavedNotificationThread */
|
|
1489
|
+
export type CreateSavedNotificationThreadInput = {
|
|
1490
|
+
/** A unique identifier for the client performing the mutation. */
|
|
1491
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
1492
|
+
/** The notification thread's id. */
|
|
1493
|
+
id: Scalars['ID']['input'];
|
|
1494
|
+
};
|
|
1456
1495
|
/** Autogenerated input type of CreateSponsorsListing */
|
|
1457
1496
|
export type CreateSponsorsListingInput = {
|
|
1458
1497
|
/**
|
|
@@ -1888,6 +1927,13 @@ export type DeleteRepositoryRulesetInput = {
|
|
|
1888
1927
|
/** The global relay id of the repository ruleset to be deleted. */
|
|
1889
1928
|
repositoryRulesetId: Scalars['ID']['input'];
|
|
1890
1929
|
};
|
|
1930
|
+
/** Autogenerated input type of DeleteSavedNotificationThread */
|
|
1931
|
+
export type DeleteSavedNotificationThreadInput = {
|
|
1932
|
+
/** A unique identifier for the client performing the mutation. */
|
|
1933
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
1934
|
+
/** The saved notification thread's id. */
|
|
1935
|
+
id: Scalars['ID']['input'];
|
|
1936
|
+
};
|
|
1891
1937
|
/** Autogenerated input type of DeleteTeamDiscussionComment */
|
|
1892
1938
|
export type DeleteTeamDiscussionCommentInput = {
|
|
1893
1939
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -2061,6 +2107,12 @@ export type DiscussionPollOptionOrderField =
|
|
|
2061
2107
|
'AUTHORED_ORDER'
|
|
2062
2108
|
/** Order poll options by the number of votes it has. */
|
|
2063
2109
|
| 'VOTE_COUNT';
|
|
2110
|
+
/** The possible PubSub channels for an discussion. */
|
|
2111
|
+
export type DiscussionPubSubTopic =
|
|
2112
|
+
/** The channel ID for updating items on the discussion timeline. */
|
|
2113
|
+
'TIMELINE'
|
|
2114
|
+
/** The channel ID for observing discussion updates. */
|
|
2115
|
+
| 'UPDATED';
|
|
2064
2116
|
/** The possible states of a discussion. */
|
|
2065
2117
|
export type DiscussionState =
|
|
2066
2118
|
/** A discussion that has been closed */
|
|
@@ -2803,6 +2855,16 @@ export type IssueOrderField =
|
|
|
2803
2855
|
| 'CREATED_AT'
|
|
2804
2856
|
/** Order issues by update time */
|
|
2805
2857
|
| 'UPDATED_AT';
|
|
2858
|
+
/** The possible PubSub channels for an issue. */
|
|
2859
|
+
export type IssuePubSubTopic =
|
|
2860
|
+
/** The channel ID for observing issue close references. */
|
|
2861
|
+
'CLOSE_REFERENCES'
|
|
2862
|
+
/** The channel ID for observing issue state updates. */
|
|
2863
|
+
| 'STATE'
|
|
2864
|
+
/** The channel ID for updating items on the issue timeline. */
|
|
2865
|
+
| 'TIMELINE'
|
|
2866
|
+
/** The channel ID for observing issue updates. */
|
|
2867
|
+
| 'UPDATED';
|
|
2806
2868
|
/** The possible states of an issue. */
|
|
2807
2869
|
export type IssueState =
|
|
2808
2870
|
/** An issue that has been closed */
|
|
@@ -2813,7 +2875,10 @@ export type IssueState =
|
|
|
2813
2875
|
export type IssueStateReason =
|
|
2814
2876
|
/** An issue that has been closed as completed */
|
|
2815
2877
|
'COMPLETED'
|
|
2816
|
-
/**
|
|
2878
|
+
/**
|
|
2879
|
+
* An issue that has been closed as a duplicate. To retrieve this value, set
|
|
2880
|
+
* `(enableDuplicate: true)` when querying the stateReason field.
|
|
2881
|
+
*/
|
|
2817
2882
|
| 'DUPLICATE'
|
|
2818
2883
|
/** An issue that has been closed as not planned */
|
|
2819
2884
|
| 'NOT_PLANNED'
|
|
@@ -2855,6 +2920,10 @@ export type IssueTimelineItemsItemType =
|
|
|
2855
2920
|
| 'MILESTONED_EVENT'
|
|
2856
2921
|
/** Represents a 'moved_columns_in_project' event on a given issue or pull request. */
|
|
2857
2922
|
| 'MOVED_COLUMNS_IN_PROJECT_EVENT'
|
|
2923
|
+
/** Represents a 'parent_issue_added' event on a given issue. */
|
|
2924
|
+
| 'PARENT_ISSUE_ADDED_EVENT'
|
|
2925
|
+
/** Represents a 'parent_issue_removed' event on a given issue. */
|
|
2926
|
+
| 'PARENT_ISSUE_REMOVED_EVENT'
|
|
2858
2927
|
/** Represents a 'pinned' event on a given issue or pull request. */
|
|
2859
2928
|
| 'PINNED_EVENT'
|
|
2860
2929
|
/** Represents a 'referenced' event on a given `ReferencedSubject`. */
|
|
@@ -2867,6 +2936,10 @@ export type IssueTimelineItemsItemType =
|
|
|
2867
2936
|
| 'REOPENED_EVENT'
|
|
2868
2937
|
/** Represents a 'subscribed' event on a given `Subscribable`. */
|
|
2869
2938
|
| 'SUBSCRIBED_EVENT'
|
|
2939
|
+
/** Represents a 'sub_issue_added' event on a given issue. */
|
|
2940
|
+
| 'SUB_ISSUE_ADDED_EVENT'
|
|
2941
|
+
/** Represents a 'sub_issue_removed' event on a given issue. */
|
|
2942
|
+
| 'SUB_ISSUE_REMOVED_EVENT'
|
|
2870
2943
|
/** Represents a 'transferred' event on a given issue or pull request. */
|
|
2871
2944
|
| 'TRANSFERRED_EVENT'
|
|
2872
2945
|
/** Represents an 'unassigned' event on any assignable object. */
|
|
@@ -2966,6 +3039,15 @@ export type MannequinOrderField =
|
|
|
2966
3039
|
'CREATED_AT'
|
|
2967
3040
|
/** Order mannequins alphabetically by their source login. */
|
|
2968
3041
|
| 'LOGIN';
|
|
3042
|
+
/** Autogenerated input type of MarkAllNotifications */
|
|
3043
|
+
export type MarkAllNotificationsInput = {
|
|
3044
|
+
/** A unique identifier for the client performing the mutation. */
|
|
3045
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
3046
|
+
/** Filter used to mark all specific notifications. */
|
|
3047
|
+
query: Scalars['String']['input'];
|
|
3048
|
+
/** The new state for the notification. */
|
|
3049
|
+
state: NotificationStatus;
|
|
3050
|
+
};
|
|
2969
3051
|
/** Autogenerated input type of MarkDiscussionCommentAsAnswer */
|
|
2970
3052
|
export type MarkDiscussionCommentAsAnswerInput = {
|
|
2971
3053
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -2989,6 +3071,62 @@ export type MarkNotificationAsDoneInput = {
|
|
|
2989
3071
|
/** The NotificationThread id. */
|
|
2990
3072
|
id: Scalars['ID']['input'];
|
|
2991
3073
|
};
|
|
3074
|
+
/** Autogenerated input type of MarkNotificationAsRead */
|
|
3075
|
+
export type MarkNotificationAsReadInput = {
|
|
3076
|
+
/** A unique identifier for the client performing the mutation. */
|
|
3077
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
3078
|
+
/** The NotificationThread id. */
|
|
3079
|
+
id: Scalars['ID']['input'];
|
|
3080
|
+
};
|
|
3081
|
+
/** Autogenerated input type of MarkNotificationAsUndone */
|
|
3082
|
+
export type MarkNotificationAsUndoneInput = {
|
|
3083
|
+
/** A unique identifier for the client performing the mutation. */
|
|
3084
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
3085
|
+
/** The NotificationThread id. */
|
|
3086
|
+
id: Scalars['ID']['input'];
|
|
3087
|
+
};
|
|
3088
|
+
/** Autogenerated input type of MarkNotificationAsUnread */
|
|
3089
|
+
export type MarkNotificationAsUnreadInput = {
|
|
3090
|
+
/** A unique identifier for the client performing the mutation. */
|
|
3091
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
3092
|
+
/** The NotificationThread id. */
|
|
3093
|
+
id: Scalars['ID']['input'];
|
|
3094
|
+
};
|
|
3095
|
+
/** Autogenerated input type of MarkNotificationSubjectAsRead */
|
|
3096
|
+
export type MarkNotificationSubjectAsReadInput = {
|
|
3097
|
+
/** A unique identifier for the client performing the mutation. */
|
|
3098
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
3099
|
+
/** The id of the notification subject to mark as read. */
|
|
3100
|
+
subjectId: Scalars['ID']['input'];
|
|
3101
|
+
};
|
|
3102
|
+
/** Autogenerated input type of MarkNotificationsAsDone */
|
|
3103
|
+
export type MarkNotificationsAsDoneInput = {
|
|
3104
|
+
/** A unique identifier for the client performing the mutation. */
|
|
3105
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
3106
|
+
/** The NotificationThread IDs that will be marked as done. */
|
|
3107
|
+
ids: Array<Scalars['ID']['input']>;
|
|
3108
|
+
};
|
|
3109
|
+
/** Autogenerated input type of MarkNotificationsAsRead */
|
|
3110
|
+
export type MarkNotificationsAsReadInput = {
|
|
3111
|
+
/** A unique identifier for the client performing the mutation. */
|
|
3112
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
3113
|
+
/** The NotificationThread IDs that will be marked as read. */
|
|
3114
|
+
ids: Array<Scalars['ID']['input']>;
|
|
3115
|
+
};
|
|
3116
|
+
/** Autogenerated input type of MarkNotificationsAsUndone */
|
|
3117
|
+
export type MarkNotificationsAsUndoneInput = {
|
|
3118
|
+
/** A unique identifier for the client performing the mutation. */
|
|
3119
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
3120
|
+
/** The NotificationThread IDs to be marked as undone. */
|
|
3121
|
+
ids: Array<Scalars['ID']['input']>;
|
|
3122
|
+
};
|
|
3123
|
+
/** Autogenerated input type of MarkNotificationsAsUnread */
|
|
3124
|
+
export type MarkNotificationsAsUnreadInput = {
|
|
3125
|
+
/** A unique identifier for the client performing the mutation. */
|
|
3126
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
3127
|
+
/** The NotificationThread IDs that will be marked as unread. */
|
|
3128
|
+
ids: Array<Scalars['ID']['input']>;
|
|
3129
|
+
};
|
|
2992
3130
|
/** Autogenerated input type of MarkProjectV2AsTemplate */
|
|
2993
3131
|
export type MarkProjectV2AsTemplateInput = {
|
|
2994
3132
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3228,12 +3366,85 @@ export type MoveProjectColumnInput = {
|
|
|
3228
3366
|
/** The id of the column to move. */
|
|
3229
3367
|
columnId: Scalars['ID']['input'];
|
|
3230
3368
|
};
|
|
3369
|
+
/** The reason you received a notification about a subject. */
|
|
3370
|
+
export type NotificationReason =
|
|
3371
|
+
/** You were requested for review for deployment. */
|
|
3372
|
+
'APPROVAL_REQUESTED'
|
|
3373
|
+
/** You were assigned to the Issue/PR. */
|
|
3374
|
+
| 'ASSIGN'
|
|
3375
|
+
/** You created the thread. */
|
|
3376
|
+
| 'AUTHOR'
|
|
3377
|
+
/** You are subscribed to continuous integration activity. */
|
|
3378
|
+
| 'CI_ACTIVITY'
|
|
3379
|
+
/** You commented on the thread. */
|
|
3380
|
+
| 'COMMENT'
|
|
3381
|
+
/** You accepted an invitation to contribute to the repository. */
|
|
3382
|
+
| 'INVITATION'
|
|
3383
|
+
/** You subscribed to the thread (via an Issue or Pull Request). */
|
|
3384
|
+
| 'MANUAL'
|
|
3385
|
+
/** New requests from members. */
|
|
3386
|
+
| 'MEMBER_FEATURE_REQUESTED'
|
|
3387
|
+
/** You were specifically @mentioned in the content. */
|
|
3388
|
+
| 'MENTION'
|
|
3389
|
+
/** A pull request you're subscribed to was marked ready for review. */
|
|
3390
|
+
| 'READY_FOR_REVIEW'
|
|
3391
|
+
/** You were requested for review. */
|
|
3392
|
+
| 'REVIEW_REQUESTED'
|
|
3393
|
+
/** You saved this notification */
|
|
3394
|
+
| 'SAVED'
|
|
3395
|
+
/** You were given credit for contributing to a Security Advisory. */
|
|
3396
|
+
| 'SECURITY_ADVISORY_CREDIT'
|
|
3397
|
+
/** You have access to the notification subject's Dependabot alerts. */
|
|
3398
|
+
| 'SECURITY_ALERT'
|
|
3399
|
+
/** You changed the thread state (for example, closing an Issue or merging a Pull Request). */
|
|
3400
|
+
| 'STATE_CHANGE'
|
|
3401
|
+
/** You are watching the subject of the notification. */
|
|
3402
|
+
| 'SUBSCRIBED'
|
|
3403
|
+
/** You were on a team that was mentioned. */
|
|
3404
|
+
| 'TEAM_MENTION';
|
|
3231
3405
|
/** The possible values for the notification restriction setting. */
|
|
3232
3406
|
export type NotificationRestrictionSettingValue =
|
|
3233
3407
|
/** The setting is disabled for the owner. */
|
|
3234
3408
|
'DISABLED'
|
|
3235
3409
|
/** The setting is enabled for the owner. */
|
|
3236
3410
|
| 'ENABLED';
|
|
3411
|
+
/** The possible states of a notification. */
|
|
3412
|
+
export type NotificationStatus =
|
|
3413
|
+
/** A notification is archived */
|
|
3414
|
+
'ARCHIVED'
|
|
3415
|
+
/** A notification is done */
|
|
3416
|
+
| 'DONE'
|
|
3417
|
+
/** A notification is read */
|
|
3418
|
+
| 'READ'
|
|
3419
|
+
/** A notification is unread */
|
|
3420
|
+
| 'UNREAD';
|
|
3421
|
+
/** Ways in which to filter lists of notification threads. */
|
|
3422
|
+
export type NotificationThreadFilters = {
|
|
3423
|
+
/** Only return notification threads where the list is in the given list */
|
|
3424
|
+
listIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3425
|
+
/** Only return notification threads where the reason is in the list */
|
|
3426
|
+
reasons?: InputMaybe<Array<NotificationReason>>;
|
|
3427
|
+
/** Only return saved notifications. All other filters will be ignored. */
|
|
3428
|
+
savedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3429
|
+
/** Only return starred notifications. All other filters will be ignored. */
|
|
3430
|
+
starredOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3431
|
+
/** Only return notifications where the status is in the list. */
|
|
3432
|
+
statuses?: InputMaybe<Array<NotificationStatus>>;
|
|
3433
|
+
/** Only return matching thread types */
|
|
3434
|
+
threadTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3435
|
+
};
|
|
3436
|
+
/** The possible subscription states of a notification thread. */
|
|
3437
|
+
export type NotificationThreadSubscriptionState =
|
|
3438
|
+
/** The thread's list is ignored. */
|
|
3439
|
+
'LIST_IGNORED'
|
|
3440
|
+
/** The thread's list is subscribed to. */
|
|
3441
|
+
| 'LIST_SUBSCRIBED'
|
|
3442
|
+
/** The thread is subscribed to. */
|
|
3443
|
+
| 'THREAD_SUBSCRIBED'
|
|
3444
|
+
/** The thread's type is subscribed to. */
|
|
3445
|
+
| 'THREAD_TYPE_SUBSCRIBED'
|
|
3446
|
+
/** The thread is not subscribed to. */
|
|
3447
|
+
| 'UNSUBSCRIBED';
|
|
3237
3448
|
/** The OIDC identity provider type */
|
|
3238
3449
|
export type OidcProviderType =
|
|
3239
3450
|
/** Azure Active Directory */
|
|
@@ -3966,6 +4177,11 @@ export type PullRequestOrderField =
|
|
|
3966
4177
|
| 'UPDATED_AT';
|
|
3967
4178
|
/** Require all commits be made to a non-target branch and submitted via a pull request before they can be merged. */
|
|
3968
4179
|
export type PullRequestParametersInput = {
|
|
4180
|
+
/**
|
|
4181
|
+
* When merging pull requests, you can allow any combination of merge commits,
|
|
4182
|
+
* squashing, or rebasing. At least one option must be enabled.
|
|
4183
|
+
*/
|
|
4184
|
+
allowedMergeMethods?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3969
4185
|
/** New, reviewable commits pushed will dismiss previous pull request review approvals. */
|
|
3970
4186
|
dismissStaleReviewsOnPush: Scalars['Boolean']['input'];
|
|
3971
4187
|
/** Require an approving review in pull requests that modify files that have a designated code owner. */
|
|
@@ -3977,6 +4193,34 @@ export type PullRequestParametersInput = {
|
|
|
3977
4193
|
/** All conversations on code must be resolved before a pull request can be merged. */
|
|
3978
4194
|
requiredReviewThreadResolution: Scalars['Boolean']['input'];
|
|
3979
4195
|
};
|
|
4196
|
+
/** The possible PubSub channels for a pull request. */
|
|
4197
|
+
export type PullRequestPubSubTopic =
|
|
4198
|
+
/** The channel ID for observing base ref updates. */
|
|
4199
|
+
'BASE_REF'
|
|
4200
|
+
/** The channel ID for observing head commit updates. */
|
|
4201
|
+
| 'COMMIT_HEAD_SHA'
|
|
4202
|
+
/** The channel ID for observing pull request deployed updates. */
|
|
4203
|
+
| 'DEPLOYED'
|
|
4204
|
+
/** The channel ID for observing pull request git merge state updates. */
|
|
4205
|
+
| 'GIT_MERGE_STATE'
|
|
4206
|
+
/** The channel ID for observing head ref updates. */
|
|
4207
|
+
| 'HEAD_REF'
|
|
4208
|
+
/** The channel ID for observing pull request mergeability with HEAD or base branch. */
|
|
4209
|
+
| 'MERGEABILITY'
|
|
4210
|
+
/** The channel ID for observing pull request merge queue entry updates. */
|
|
4211
|
+
| 'MERGE_QUEUE'
|
|
4212
|
+
/** The channel ID for observing pull request user presence updates. */
|
|
4213
|
+
| 'PRESENCE'
|
|
4214
|
+
/** The channel ID for observing pull request review state updates. */
|
|
4215
|
+
| 'REVIEW_STATE'
|
|
4216
|
+
/** The channel ID for observing pull request state updates. */
|
|
4217
|
+
| 'STATE'
|
|
4218
|
+
/** The channel ID for updating items on the pull request timeline. */
|
|
4219
|
+
| 'TIMELINE'
|
|
4220
|
+
/** The channel ID for observing pull request updates. */
|
|
4221
|
+
| 'UPDATED'
|
|
4222
|
+
/** The channel ID for observing pull request workflow run updates. */
|
|
4223
|
+
| 'WORKFLOWS';
|
|
3980
4224
|
/** The possible states of a pull request review comment. */
|
|
3981
4225
|
export type PullRequestReviewCommentState =
|
|
3982
4226
|
/** A comment that is part of a pending review */
|
|
@@ -4097,6 +4341,10 @@ export type PullRequestTimelineItemsItemType =
|
|
|
4097
4341
|
| 'MILESTONED_EVENT'
|
|
4098
4342
|
/** Represents a 'moved_columns_in_project' event on a given issue or pull request. */
|
|
4099
4343
|
| 'MOVED_COLUMNS_IN_PROJECT_EVENT'
|
|
4344
|
+
/** Represents a 'parent_issue_added' event on a given issue. */
|
|
4345
|
+
| 'PARENT_ISSUE_ADDED_EVENT'
|
|
4346
|
+
/** Represents a 'parent_issue_removed' event on a given issue. */
|
|
4347
|
+
| 'PARENT_ISSUE_REMOVED_EVENT'
|
|
4100
4348
|
/** Represents a 'pinned' event on a given issue or pull request. */
|
|
4101
4349
|
| 'PINNED_EVENT'
|
|
4102
4350
|
/** Represents a Git commit part of a pull request. */
|
|
@@ -4129,6 +4377,10 @@ export type PullRequestTimelineItemsItemType =
|
|
|
4129
4377
|
| 'REVIEW_REQUEST_REMOVED_EVENT'
|
|
4130
4378
|
/** Represents a 'subscribed' event on a given `Subscribable`. */
|
|
4131
4379
|
| 'SUBSCRIBED_EVENT'
|
|
4380
|
+
/** Represents a 'sub_issue_added' event on a given issue. */
|
|
4381
|
+
| 'SUB_ISSUE_ADDED_EVENT'
|
|
4382
|
+
/** Represents a 'sub_issue_removed' event on a given issue. */
|
|
4383
|
+
| 'SUB_ISSUE_REMOVED_EVENT'
|
|
4132
4384
|
/** Represents a 'transferred' event on a given issue or pull request. */
|
|
4133
4385
|
| 'TRANSFERRED_EVENT'
|
|
4134
4386
|
/** Represents an 'unassigned' event on any assignable object. */
|
|
@@ -4339,6 +4591,15 @@ export type RemoveStarInput = {
|
|
|
4339
4591
|
/** The Starrable ID to unstar. */
|
|
4340
4592
|
starrableId: Scalars['ID']['input'];
|
|
4341
4593
|
};
|
|
4594
|
+
/** Autogenerated input type of RemoveSubIssue */
|
|
4595
|
+
export type RemoveSubIssueInput = {
|
|
4596
|
+
/** A unique identifier for the client performing the mutation. */
|
|
4597
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
4598
|
+
/** The id of the issue. */
|
|
4599
|
+
issueId: Scalars['ID']['input'];
|
|
4600
|
+
/** The id of the sub-issue. */
|
|
4601
|
+
subIssueId: Scalars['ID']['input'];
|
|
4602
|
+
};
|
|
4342
4603
|
/** Autogenerated input type of RemoveUpvote */
|
|
4343
4604
|
export type RemoveUpvoteInput = {
|
|
4344
4605
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -4378,7 +4639,7 @@ export type ReorderEnvironmentInput = {
|
|
|
4378
4639
|
};
|
|
4379
4640
|
/** The privacy of a repository */
|
|
4380
4641
|
export type RepoAccessAuditEntryVisibility =
|
|
4381
|
-
/** The repository is visible only to users in the same
|
|
4642
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
4382
4643
|
'INTERNAL'
|
|
4383
4644
|
/** The repository is visible only to those with explicit access. */
|
|
4384
4645
|
| 'PRIVATE'
|
|
@@ -4386,7 +4647,7 @@ export type RepoAccessAuditEntryVisibility =
|
|
|
4386
4647
|
| 'PUBLIC';
|
|
4387
4648
|
/** The privacy of a repository */
|
|
4388
4649
|
export type RepoAddMemberAuditEntryVisibility =
|
|
4389
|
-
/** The repository is visible only to users in the same
|
|
4650
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
4390
4651
|
'INTERNAL'
|
|
4391
4652
|
/** The repository is visible only to those with explicit access. */
|
|
4392
4653
|
| 'PRIVATE'
|
|
@@ -4394,7 +4655,7 @@ export type RepoAddMemberAuditEntryVisibility =
|
|
|
4394
4655
|
| 'PUBLIC';
|
|
4395
4656
|
/** The privacy of a repository */
|
|
4396
4657
|
export type RepoArchivedAuditEntryVisibility =
|
|
4397
|
-
/** The repository is visible only to users in the same
|
|
4658
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
4398
4659
|
'INTERNAL'
|
|
4399
4660
|
/** The repository is visible only to those with explicit access. */
|
|
4400
4661
|
| 'PRIVATE'
|
|
@@ -4410,7 +4671,7 @@ export type RepoChangeMergeSettingAuditEntryMergeType =
|
|
|
4410
4671
|
| 'SQUASH';
|
|
4411
4672
|
/** The privacy of a repository */
|
|
4412
4673
|
export type RepoCreateAuditEntryVisibility =
|
|
4413
|
-
/** The repository is visible only to users in the same
|
|
4674
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
4414
4675
|
'INTERNAL'
|
|
4415
4676
|
/** The repository is visible only to those with explicit access. */
|
|
4416
4677
|
| 'PRIVATE'
|
|
@@ -4418,7 +4679,7 @@ export type RepoCreateAuditEntryVisibility =
|
|
|
4418
4679
|
| 'PUBLIC';
|
|
4419
4680
|
/** The privacy of a repository */
|
|
4420
4681
|
export type RepoDestroyAuditEntryVisibility =
|
|
4421
|
-
/** The repository is visible only to users in the same
|
|
4682
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
4422
4683
|
'INTERNAL'
|
|
4423
4684
|
/** The repository is visible only to those with explicit access. */
|
|
4424
4685
|
| 'PRIVATE'
|
|
@@ -4426,7 +4687,7 @@ export type RepoDestroyAuditEntryVisibility =
|
|
|
4426
4687
|
| 'PUBLIC';
|
|
4427
4688
|
/** The privacy of a repository */
|
|
4428
4689
|
export type RepoRemoveMemberAuditEntryVisibility =
|
|
4429
|
-
/** The repository is visible only to users in the same
|
|
4690
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
4430
4691
|
'INTERNAL'
|
|
4431
4692
|
/** The repository is visible only to those with explicit access. */
|
|
4432
4693
|
| 'PRIVATE'
|
|
@@ -4746,11 +5007,13 @@ export type RepositoryRulesetTarget =
|
|
|
4746
5007
|
'BRANCH'
|
|
4747
5008
|
/** Push */
|
|
4748
5009
|
| 'PUSH'
|
|
5010
|
+
/** repository */
|
|
5011
|
+
| 'REPOSITORY'
|
|
4749
5012
|
/** Tag */
|
|
4750
5013
|
| 'TAG';
|
|
4751
5014
|
/** The repository's visibility level. */
|
|
4752
5015
|
export type RepositoryVisibility =
|
|
4753
|
-
/** The repository is visible only to users in the same
|
|
5016
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
4754
5017
|
'INTERNAL'
|
|
4755
5018
|
/** The repository is visible only to those with explicit access. */
|
|
4756
5019
|
| 'PRIVATE'
|
|
@@ -4772,6 +5035,19 @@ export type RepositoryVulnerabilityAlertState =
|
|
|
4772
5035
|
| 'FIXED'
|
|
4773
5036
|
/** An alert that is still open. */
|
|
4774
5037
|
| 'OPEN';
|
|
5038
|
+
/** Autogenerated input type of ReprioritizeSubIssue */
|
|
5039
|
+
export type ReprioritizeSubIssueInput = {
|
|
5040
|
+
/** The id of the sub-issue to be prioritized after (either positional argument after OR before should be specified). */
|
|
5041
|
+
afterId?: InputMaybe<Scalars['ID']['input']>;
|
|
5042
|
+
/** The id of the sub-issue to be prioritized before (either positional argument after OR before should be specified). */
|
|
5043
|
+
beforeId?: InputMaybe<Scalars['ID']['input']>;
|
|
5044
|
+
/** A unique identifier for the client performing the mutation. */
|
|
5045
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
5046
|
+
/** The id of the parent issue. */
|
|
5047
|
+
issueId: Scalars['ID']['input'];
|
|
5048
|
+
/** The id of the sub-issue to reprioritize. */
|
|
5049
|
+
subIssueId: Scalars['ID']['input'];
|
|
5050
|
+
};
|
|
4775
5051
|
/** Autogenerated input type of RequestReviews */
|
|
4776
5052
|
export type RequestReviewsInput = {
|
|
4777
5053
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -6692,6 +6968,21 @@ export type UpdateProjectV2DraftIssueInput = {
|
|
|
6692
6968
|
/** The title of the draft issue. */
|
|
6693
6969
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
6694
6970
|
};
|
|
6971
|
+
/** Autogenerated input type of UpdateProjectV2Field */
|
|
6972
|
+
export type UpdateProjectV2FieldInput = {
|
|
6973
|
+
/** A unique identifier for the client performing the mutation. */
|
|
6974
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
6975
|
+
/** The ID of the field to update. */
|
|
6976
|
+
fieldId: Scalars['ID']['input'];
|
|
6977
|
+
/** The name to update. */
|
|
6978
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
6979
|
+
/**
|
|
6980
|
+
* Options for a field of type SINGLE_SELECT. If empty, no changes will be made
|
|
6981
|
+
* to the options. If values are present, they will overwrite the existing
|
|
6982
|
+
* options for the field.
|
|
6983
|
+
*/
|
|
6984
|
+
singleSelectOptions?: InputMaybe<Array<ProjectV2SingleSelectFieldOptionInput>>;
|
|
6985
|
+
};
|
|
6695
6986
|
/** Autogenerated input type of UpdateProjectV2 */
|
|
6696
6987
|
export type UpdateProjectV2Input = {
|
|
6697
6988
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -7024,6 +7315,12 @@ export type UserBlockDuration =
|
|
|
7024
7315
|
| 'PERMANENT'
|
|
7025
7316
|
/** The user was blocked for 3 days */
|
|
7026
7317
|
| 'THREE_DAYS';
|
|
7318
|
+
/** The possible PubSub channels for a user. */
|
|
7319
|
+
export type UserPubSubTopic =
|
|
7320
|
+
/** The channel ID for observing user marked as read updates. */
|
|
7321
|
+
'MARKED_READ'
|
|
7322
|
+
/** The channel ID for observing user notifications changed updates. */
|
|
7323
|
+
| 'NOTIFICATIONS_CHANGED';
|
|
7027
7324
|
/** Ordering options for user status connections. */
|
|
7028
7325
|
export type UserStatusOrder = {
|
|
7029
7326
|
/** The ordering direction. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typescript-github-action-template",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.11",
|
|
4
4
|
"description": "A template to create custom GitHub Action with TypeScript/JavaScript.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.js",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"@eslint/js": "^9.2.0",
|
|
33
33
|
"@graphql-codegen/cli": "5.0.3",
|
|
34
34
|
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
|
|
35
|
-
"@graphql-codegen/typescript": "4.1.
|
|
36
|
-
"@graphql-codegen/typescript-document-nodes": "4.0.
|
|
35
|
+
"@graphql-codegen/typescript": "4.1.2",
|
|
36
|
+
"@graphql-codegen/typescript-document-nodes": "4.0.12",
|
|
37
37
|
"@serverless-guru/prettier-plugin-import-order": "^0.4.2",
|
|
38
38
|
"@types/node": "^22.0.0",
|
|
39
39
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"eslint-plugin-prettier": "^5.0.0",
|
|
45
45
|
"graphql": "^16.9.0",
|
|
46
46
|
"husky": "^9.0.5",
|
|
47
|
-
"is-ci": "^
|
|
47
|
+
"is-ci": "^4.1.0",
|
|
48
48
|
"lint-staged": "^15.0.2",
|
|
49
49
|
"pinst": "^3.0.0",
|
|
50
50
|
"prettier": "^3.0.2",
|