typescript-github-action-template 0.2.10 → 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 +253 -8
- package/package.json +2 -2
|
@@ -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. */
|
|
@@ -792,6 +801,8 @@ export type CloseDiscussionInput = {
|
|
|
792
801
|
export type CloseIssueInput = {
|
|
793
802
|
/** A unique identifier for the client performing the mutation. */
|
|
794
803
|
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
804
|
+
/** ID of the issue that this is a duplicate of. */
|
|
805
|
+
duplicateIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
795
806
|
/** ID of the issue to be closed. */
|
|
796
807
|
issueId: Scalars['ID']['input'];
|
|
797
808
|
/** The reason the issue is to be closed. */
|
|
@@ -1021,6 +1032,12 @@ export type ConvertPullRequestToDraftInput = {
|
|
|
1021
1032
|
/** ID of the pull request to convert to draft */
|
|
1022
1033
|
pullRequestId: Scalars['ID']['input'];
|
|
1023
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';
|
|
1024
1041
|
/** Autogenerated input type of CopyProjectV2 */
|
|
1025
1042
|
export type CopyProjectV2Input = {
|
|
1026
1043
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -1468,6 +1485,13 @@ export type CreateRepositoryRulesetInput = {
|
|
|
1468
1485
|
/** The target of the ruleset. */
|
|
1469
1486
|
target?: InputMaybe<RepositoryRulesetTarget>;
|
|
1470
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
|
+
};
|
|
1471
1495
|
/** Autogenerated input type of CreateSponsorsListing */
|
|
1472
1496
|
export type CreateSponsorsListingInput = {
|
|
1473
1497
|
/**
|
|
@@ -1903,6 +1927,13 @@ export type DeleteRepositoryRulesetInput = {
|
|
|
1903
1927
|
/** The global relay id of the repository ruleset to be deleted. */
|
|
1904
1928
|
repositoryRulesetId: Scalars['ID']['input'];
|
|
1905
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
|
+
};
|
|
1906
1937
|
/** Autogenerated input type of DeleteTeamDiscussionComment */
|
|
1907
1938
|
export type DeleteTeamDiscussionCommentInput = {
|
|
1908
1939
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -2076,6 +2107,12 @@ export type DiscussionPollOptionOrderField =
|
|
|
2076
2107
|
'AUTHORED_ORDER'
|
|
2077
2108
|
/** Order poll options by the number of votes it has. */
|
|
2078
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';
|
|
2079
2116
|
/** The possible states of a discussion. */
|
|
2080
2117
|
export type DiscussionState =
|
|
2081
2118
|
/** A discussion that has been closed */
|
|
@@ -2818,6 +2855,16 @@ export type IssueOrderField =
|
|
|
2818
2855
|
| 'CREATED_AT'
|
|
2819
2856
|
/** Order issues by update time */
|
|
2820
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';
|
|
2821
2868
|
/** The possible states of an issue. */
|
|
2822
2869
|
export type IssueState =
|
|
2823
2870
|
/** An issue that has been closed */
|
|
@@ -2828,7 +2875,10 @@ export type IssueState =
|
|
|
2828
2875
|
export type IssueStateReason =
|
|
2829
2876
|
/** An issue that has been closed as completed */
|
|
2830
2877
|
'COMPLETED'
|
|
2831
|
-
/**
|
|
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
|
+
*/
|
|
2832
2882
|
| 'DUPLICATE'
|
|
2833
2883
|
/** An issue that has been closed as not planned */
|
|
2834
2884
|
| 'NOT_PLANNED'
|
|
@@ -2870,6 +2920,10 @@ export type IssueTimelineItemsItemType =
|
|
|
2870
2920
|
| 'MILESTONED_EVENT'
|
|
2871
2921
|
/** Represents a 'moved_columns_in_project' event on a given issue or pull request. */
|
|
2872
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'
|
|
2873
2927
|
/** Represents a 'pinned' event on a given issue or pull request. */
|
|
2874
2928
|
| 'PINNED_EVENT'
|
|
2875
2929
|
/** Represents a 'referenced' event on a given `ReferencedSubject`. */
|
|
@@ -2882,6 +2936,10 @@ export type IssueTimelineItemsItemType =
|
|
|
2882
2936
|
| 'REOPENED_EVENT'
|
|
2883
2937
|
/** Represents a 'subscribed' event on a given `Subscribable`. */
|
|
2884
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'
|
|
2885
2943
|
/** Represents a 'transferred' event on a given issue or pull request. */
|
|
2886
2944
|
| 'TRANSFERRED_EVENT'
|
|
2887
2945
|
/** Represents an 'unassigned' event on any assignable object. */
|
|
@@ -2981,6 +3039,15 @@ export type MannequinOrderField =
|
|
|
2981
3039
|
'CREATED_AT'
|
|
2982
3040
|
/** Order mannequins alphabetically by their source login. */
|
|
2983
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
|
+
};
|
|
2984
3051
|
/** Autogenerated input type of MarkDiscussionCommentAsAnswer */
|
|
2985
3052
|
export type MarkDiscussionCommentAsAnswerInput = {
|
|
2986
3053
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3004,6 +3071,62 @@ export type MarkNotificationAsDoneInput = {
|
|
|
3004
3071
|
/** The NotificationThread id. */
|
|
3005
3072
|
id: Scalars['ID']['input'];
|
|
3006
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
|
+
};
|
|
3007
3130
|
/** Autogenerated input type of MarkProjectV2AsTemplate */
|
|
3008
3131
|
export type MarkProjectV2AsTemplateInput = {
|
|
3009
3132
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3243,12 +3366,85 @@ export type MoveProjectColumnInput = {
|
|
|
3243
3366
|
/** The id of the column to move. */
|
|
3244
3367
|
columnId: Scalars['ID']['input'];
|
|
3245
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';
|
|
3246
3405
|
/** The possible values for the notification restriction setting. */
|
|
3247
3406
|
export type NotificationRestrictionSettingValue =
|
|
3248
3407
|
/** The setting is disabled for the owner. */
|
|
3249
3408
|
'DISABLED'
|
|
3250
3409
|
/** The setting is enabled for the owner. */
|
|
3251
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';
|
|
3252
3448
|
/** The OIDC identity provider type */
|
|
3253
3449
|
export type OidcProviderType =
|
|
3254
3450
|
/** Azure Active Directory */
|
|
@@ -3981,6 +4177,11 @@ export type PullRequestOrderField =
|
|
|
3981
4177
|
| 'UPDATED_AT';
|
|
3982
4178
|
/** Require all commits be made to a non-target branch and submitted via a pull request before they can be merged. */
|
|
3983
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']>>;
|
|
3984
4185
|
/** New, reviewable commits pushed will dismiss previous pull request review approvals. */
|
|
3985
4186
|
dismissStaleReviewsOnPush: Scalars['Boolean']['input'];
|
|
3986
4187
|
/** Require an approving review in pull requests that modify files that have a designated code owner. */
|
|
@@ -3992,6 +4193,34 @@ export type PullRequestParametersInput = {
|
|
|
3992
4193
|
/** All conversations on code must be resolved before a pull request can be merged. */
|
|
3993
4194
|
requiredReviewThreadResolution: Scalars['Boolean']['input'];
|
|
3994
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';
|
|
3995
4224
|
/** The possible states of a pull request review comment. */
|
|
3996
4225
|
export type PullRequestReviewCommentState =
|
|
3997
4226
|
/** A comment that is part of a pending review */
|
|
@@ -4112,6 +4341,10 @@ export type PullRequestTimelineItemsItemType =
|
|
|
4112
4341
|
| 'MILESTONED_EVENT'
|
|
4113
4342
|
/** Represents a 'moved_columns_in_project' event on a given issue or pull request. */
|
|
4114
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'
|
|
4115
4348
|
/** Represents a 'pinned' event on a given issue or pull request. */
|
|
4116
4349
|
| 'PINNED_EVENT'
|
|
4117
4350
|
/** Represents a Git commit part of a pull request. */
|
|
@@ -4144,6 +4377,10 @@ export type PullRequestTimelineItemsItemType =
|
|
|
4144
4377
|
| 'REVIEW_REQUEST_REMOVED_EVENT'
|
|
4145
4378
|
/** Represents a 'subscribed' event on a given `Subscribable`. */
|
|
4146
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'
|
|
4147
4384
|
/** Represents a 'transferred' event on a given issue or pull request. */
|
|
4148
4385
|
| 'TRANSFERRED_EVENT'
|
|
4149
4386
|
/** Represents an 'unassigned' event on any assignable object. */
|
|
@@ -4402,7 +4639,7 @@ export type ReorderEnvironmentInput = {
|
|
|
4402
4639
|
};
|
|
4403
4640
|
/** The privacy of a repository */
|
|
4404
4641
|
export type RepoAccessAuditEntryVisibility =
|
|
4405
|
-
/** The repository is visible only to users in the same
|
|
4642
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
4406
4643
|
'INTERNAL'
|
|
4407
4644
|
/** The repository is visible only to those with explicit access. */
|
|
4408
4645
|
| 'PRIVATE'
|
|
@@ -4410,7 +4647,7 @@ export type RepoAccessAuditEntryVisibility =
|
|
|
4410
4647
|
| 'PUBLIC';
|
|
4411
4648
|
/** The privacy of a repository */
|
|
4412
4649
|
export type RepoAddMemberAuditEntryVisibility =
|
|
4413
|
-
/** The repository is visible only to users in the same
|
|
4650
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
4414
4651
|
'INTERNAL'
|
|
4415
4652
|
/** The repository is visible only to those with explicit access. */
|
|
4416
4653
|
| 'PRIVATE'
|
|
@@ -4418,7 +4655,7 @@ export type RepoAddMemberAuditEntryVisibility =
|
|
|
4418
4655
|
| 'PUBLIC';
|
|
4419
4656
|
/** The privacy of a repository */
|
|
4420
4657
|
export type RepoArchivedAuditEntryVisibility =
|
|
4421
|
-
/** The repository is visible only to users in the same
|
|
4658
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
4422
4659
|
'INTERNAL'
|
|
4423
4660
|
/** The repository is visible only to those with explicit access. */
|
|
4424
4661
|
| 'PRIVATE'
|
|
@@ -4434,7 +4671,7 @@ export type RepoChangeMergeSettingAuditEntryMergeType =
|
|
|
4434
4671
|
| 'SQUASH';
|
|
4435
4672
|
/** The privacy of a repository */
|
|
4436
4673
|
export type RepoCreateAuditEntryVisibility =
|
|
4437
|
-
/** The repository is visible only to users in the same
|
|
4674
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
4438
4675
|
'INTERNAL'
|
|
4439
4676
|
/** The repository is visible only to those with explicit access. */
|
|
4440
4677
|
| 'PRIVATE'
|
|
@@ -4442,7 +4679,7 @@ export type RepoCreateAuditEntryVisibility =
|
|
|
4442
4679
|
| 'PUBLIC';
|
|
4443
4680
|
/** The privacy of a repository */
|
|
4444
4681
|
export type RepoDestroyAuditEntryVisibility =
|
|
4445
|
-
/** The repository is visible only to users in the same
|
|
4682
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
4446
4683
|
'INTERNAL'
|
|
4447
4684
|
/** The repository is visible only to those with explicit access. */
|
|
4448
4685
|
| 'PRIVATE'
|
|
@@ -4450,7 +4687,7 @@ export type RepoDestroyAuditEntryVisibility =
|
|
|
4450
4687
|
| 'PUBLIC';
|
|
4451
4688
|
/** The privacy of a repository */
|
|
4452
4689
|
export type RepoRemoveMemberAuditEntryVisibility =
|
|
4453
|
-
/** The repository is visible only to users in the same
|
|
4690
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
4454
4691
|
'INTERNAL'
|
|
4455
4692
|
/** The repository is visible only to those with explicit access. */
|
|
4456
4693
|
| 'PRIVATE'
|
|
@@ -4770,11 +5007,13 @@ export type RepositoryRulesetTarget =
|
|
|
4770
5007
|
'BRANCH'
|
|
4771
5008
|
/** Push */
|
|
4772
5009
|
| 'PUSH'
|
|
5010
|
+
/** repository */
|
|
5011
|
+
| 'REPOSITORY'
|
|
4773
5012
|
/** Tag */
|
|
4774
5013
|
| 'TAG';
|
|
4775
5014
|
/** The repository's visibility level. */
|
|
4776
5015
|
export type RepositoryVisibility =
|
|
4777
|
-
/** The repository is visible only to users in the same
|
|
5016
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
4778
5017
|
'INTERNAL'
|
|
4779
5018
|
/** The repository is visible only to those with explicit access. */
|
|
4780
5019
|
| 'PRIVATE'
|
|
@@ -7076,6 +7315,12 @@ export type UserBlockDuration =
|
|
|
7076
7315
|
| 'PERMANENT'
|
|
7077
7316
|
/** The user was blocked for 3 days */
|
|
7078
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';
|
|
7079
7324
|
/** Ordering options for user status connections. */
|
|
7080
7325
|
export type UserStatusOrder = {
|
|
7081
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",
|
|
@@ -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",
|