typescript-github-action-template 0.2.10 → 0.2.12
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 +45 -22
- package/package.json +3 -3
|
@@ -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. */
|
|
@@ -2828,7 +2839,10 @@ export type IssueState =
|
|
|
2828
2839
|
export type IssueStateReason =
|
|
2829
2840
|
/** An issue that has been closed as completed */
|
|
2830
2841
|
'COMPLETED'
|
|
2831
|
-
/**
|
|
2842
|
+
/**
|
|
2843
|
+
* An issue that has been closed as a duplicate. To retrieve this value, set
|
|
2844
|
+
* `(enableDuplicate: true)` when querying the stateReason field.
|
|
2845
|
+
*/
|
|
2832
2846
|
| 'DUPLICATE'
|
|
2833
2847
|
/** An issue that has been closed as not planned */
|
|
2834
2848
|
| 'NOT_PLANNED'
|
|
@@ -2870,6 +2884,10 @@ export type IssueTimelineItemsItemType =
|
|
|
2870
2884
|
| 'MILESTONED_EVENT'
|
|
2871
2885
|
/** Represents a 'moved_columns_in_project' event on a given issue or pull request. */
|
|
2872
2886
|
| 'MOVED_COLUMNS_IN_PROJECT_EVENT'
|
|
2887
|
+
/** Represents a 'parent_issue_added' event on a given issue. */
|
|
2888
|
+
| 'PARENT_ISSUE_ADDED_EVENT'
|
|
2889
|
+
/** Represents a 'parent_issue_removed' event on a given issue. */
|
|
2890
|
+
| 'PARENT_ISSUE_REMOVED_EVENT'
|
|
2873
2891
|
/** Represents a 'pinned' event on a given issue or pull request. */
|
|
2874
2892
|
| 'PINNED_EVENT'
|
|
2875
2893
|
/** Represents a 'referenced' event on a given `ReferencedSubject`. */
|
|
@@ -2882,6 +2900,10 @@ export type IssueTimelineItemsItemType =
|
|
|
2882
2900
|
| 'REOPENED_EVENT'
|
|
2883
2901
|
/** Represents a 'subscribed' event on a given `Subscribable`. */
|
|
2884
2902
|
| 'SUBSCRIBED_EVENT'
|
|
2903
|
+
/** Represents a 'sub_issue_added' event on a given issue. */
|
|
2904
|
+
| 'SUB_ISSUE_ADDED_EVENT'
|
|
2905
|
+
/** Represents a 'sub_issue_removed' event on a given issue. */
|
|
2906
|
+
| 'SUB_ISSUE_REMOVED_EVENT'
|
|
2885
2907
|
/** Represents a 'transferred' event on a given issue or pull request. */
|
|
2886
2908
|
| 'TRANSFERRED_EVENT'
|
|
2887
2909
|
/** Represents an 'unassigned' event on any assignable object. */
|
|
@@ -2997,13 +3019,6 @@ export type MarkFileAsViewedInput = {
|
|
|
2997
3019
|
/** The Node ID of the pull request. */
|
|
2998
3020
|
pullRequestId: Scalars['ID']['input'];
|
|
2999
3021
|
};
|
|
3000
|
-
/** Autogenerated input type of MarkNotificationAsDone */
|
|
3001
|
-
export type MarkNotificationAsDoneInput = {
|
|
3002
|
-
/** A unique identifier for the client performing the mutation. */
|
|
3003
|
-
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
3004
|
-
/** The NotificationThread id. */
|
|
3005
|
-
id: Scalars['ID']['input'];
|
|
3006
|
-
};
|
|
3007
3022
|
/** Autogenerated input type of MarkProjectV2AsTemplate */
|
|
3008
3023
|
export type MarkProjectV2AsTemplateInput = {
|
|
3009
3024
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -3981,6 +3996,11 @@ export type PullRequestOrderField =
|
|
|
3981
3996
|
| 'UPDATED_AT';
|
|
3982
3997
|
/** Require all commits be made to a non-target branch and submitted via a pull request before they can be merged. */
|
|
3983
3998
|
export type PullRequestParametersInput = {
|
|
3999
|
+
/**
|
|
4000
|
+
* When merging pull requests, you can allow any combination of merge commits,
|
|
4001
|
+
* squashing, or rebasing. At least one option must be enabled.
|
|
4002
|
+
*/
|
|
4003
|
+
allowedMergeMethods?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3984
4004
|
/** New, reviewable commits pushed will dismiss previous pull request review approvals. */
|
|
3985
4005
|
dismissStaleReviewsOnPush: Scalars['Boolean']['input'];
|
|
3986
4006
|
/** Require an approving review in pull requests that modify files that have a designated code owner. */
|
|
@@ -4112,6 +4132,10 @@ export type PullRequestTimelineItemsItemType =
|
|
|
4112
4132
|
| 'MILESTONED_EVENT'
|
|
4113
4133
|
/** Represents a 'moved_columns_in_project' event on a given issue or pull request. */
|
|
4114
4134
|
| 'MOVED_COLUMNS_IN_PROJECT_EVENT'
|
|
4135
|
+
/** Represents a 'parent_issue_added' event on a given issue. */
|
|
4136
|
+
| 'PARENT_ISSUE_ADDED_EVENT'
|
|
4137
|
+
/** Represents a 'parent_issue_removed' event on a given issue. */
|
|
4138
|
+
| 'PARENT_ISSUE_REMOVED_EVENT'
|
|
4115
4139
|
/** Represents a 'pinned' event on a given issue or pull request. */
|
|
4116
4140
|
| 'PINNED_EVENT'
|
|
4117
4141
|
/** Represents a Git commit part of a pull request. */
|
|
@@ -4144,6 +4168,10 @@ export type PullRequestTimelineItemsItemType =
|
|
|
4144
4168
|
| 'REVIEW_REQUEST_REMOVED_EVENT'
|
|
4145
4169
|
/** Represents a 'subscribed' event on a given `Subscribable`. */
|
|
4146
4170
|
| 'SUBSCRIBED_EVENT'
|
|
4171
|
+
/** Represents a 'sub_issue_added' event on a given issue. */
|
|
4172
|
+
| 'SUB_ISSUE_ADDED_EVENT'
|
|
4173
|
+
/** Represents a 'sub_issue_removed' event on a given issue. */
|
|
4174
|
+
| 'SUB_ISSUE_REMOVED_EVENT'
|
|
4147
4175
|
/** Represents a 'transferred' event on a given issue or pull request. */
|
|
4148
4176
|
| 'TRANSFERRED_EVENT'
|
|
4149
4177
|
/** Represents an 'unassigned' event on any assignable object. */
|
|
@@ -4402,7 +4430,7 @@ export type ReorderEnvironmentInput = {
|
|
|
4402
4430
|
};
|
|
4403
4431
|
/** The privacy of a repository */
|
|
4404
4432
|
export type RepoAccessAuditEntryVisibility =
|
|
4405
|
-
/** The repository is visible only to users in the same
|
|
4433
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
4406
4434
|
'INTERNAL'
|
|
4407
4435
|
/** The repository is visible only to those with explicit access. */
|
|
4408
4436
|
| 'PRIVATE'
|
|
@@ -4410,7 +4438,7 @@ export type RepoAccessAuditEntryVisibility =
|
|
|
4410
4438
|
| 'PUBLIC';
|
|
4411
4439
|
/** The privacy of a repository */
|
|
4412
4440
|
export type RepoAddMemberAuditEntryVisibility =
|
|
4413
|
-
/** The repository is visible only to users in the same
|
|
4441
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
4414
4442
|
'INTERNAL'
|
|
4415
4443
|
/** The repository is visible only to those with explicit access. */
|
|
4416
4444
|
| 'PRIVATE'
|
|
@@ -4418,7 +4446,7 @@ export type RepoAddMemberAuditEntryVisibility =
|
|
|
4418
4446
|
| 'PUBLIC';
|
|
4419
4447
|
/** The privacy of a repository */
|
|
4420
4448
|
export type RepoArchivedAuditEntryVisibility =
|
|
4421
|
-
/** The repository is visible only to users in the same
|
|
4449
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
4422
4450
|
'INTERNAL'
|
|
4423
4451
|
/** The repository is visible only to those with explicit access. */
|
|
4424
4452
|
| 'PRIVATE'
|
|
@@ -4434,7 +4462,7 @@ export type RepoChangeMergeSettingAuditEntryMergeType =
|
|
|
4434
4462
|
| 'SQUASH';
|
|
4435
4463
|
/** The privacy of a repository */
|
|
4436
4464
|
export type RepoCreateAuditEntryVisibility =
|
|
4437
|
-
/** The repository is visible only to users in the same
|
|
4465
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
4438
4466
|
'INTERNAL'
|
|
4439
4467
|
/** The repository is visible only to those with explicit access. */
|
|
4440
4468
|
| 'PRIVATE'
|
|
@@ -4442,7 +4470,7 @@ export type RepoCreateAuditEntryVisibility =
|
|
|
4442
4470
|
| 'PUBLIC';
|
|
4443
4471
|
/** The privacy of a repository */
|
|
4444
4472
|
export type RepoDestroyAuditEntryVisibility =
|
|
4445
|
-
/** The repository is visible only to users in the same
|
|
4473
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
4446
4474
|
'INTERNAL'
|
|
4447
4475
|
/** The repository is visible only to those with explicit access. */
|
|
4448
4476
|
| 'PRIVATE'
|
|
@@ -4450,7 +4478,7 @@ export type RepoDestroyAuditEntryVisibility =
|
|
|
4450
4478
|
| 'PUBLIC';
|
|
4451
4479
|
/** The privacy of a repository */
|
|
4452
4480
|
export type RepoRemoveMemberAuditEntryVisibility =
|
|
4453
|
-
/** The repository is visible only to users in the same
|
|
4481
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
4454
4482
|
'INTERNAL'
|
|
4455
4483
|
/** The repository is visible only to those with explicit access. */
|
|
4456
4484
|
| 'PRIVATE'
|
|
@@ -4770,11 +4798,13 @@ export type RepositoryRulesetTarget =
|
|
|
4770
4798
|
'BRANCH'
|
|
4771
4799
|
/** Push */
|
|
4772
4800
|
| 'PUSH'
|
|
4801
|
+
/** repository */
|
|
4802
|
+
| 'REPOSITORY'
|
|
4773
4803
|
/** Tag */
|
|
4774
4804
|
| 'TAG';
|
|
4775
4805
|
/** The repository's visibility level. */
|
|
4776
4806
|
export type RepositoryVisibility =
|
|
4777
|
-
/** The repository is visible only to users in the same
|
|
4807
|
+
/** The repository is visible only to users in the same enterprise. */
|
|
4778
4808
|
'INTERNAL'
|
|
4779
4809
|
/** The repository is visible only to those with explicit access. */
|
|
4780
4810
|
| 'PRIVATE'
|
|
@@ -6215,13 +6245,6 @@ export type UnresolveReviewThreadInput = {
|
|
|
6215
6245
|
/** The ID of the thread to unresolve */
|
|
6216
6246
|
threadId: Scalars['ID']['input'];
|
|
6217
6247
|
};
|
|
6218
|
-
/** Autogenerated input type of UnsubscribeFromNotifications */
|
|
6219
|
-
export type UnsubscribeFromNotificationsInput = {
|
|
6220
|
-
/** A unique identifier for the client performing the mutation. */
|
|
6221
|
-
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
6222
|
-
/** The NotificationThread IDs of the objects to unsubscribe from. */
|
|
6223
|
-
ids: Array<Scalars['ID']['input']>;
|
|
6224
|
-
};
|
|
6225
6248
|
/** Autogenerated input type of UpdateBranchProtectionRule */
|
|
6226
6249
|
export type UpdateBranchProtectionRuleInput = {
|
|
6227
6250
|
/** Can this branch be deleted. */
|
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.12",
|
|
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",
|
|
@@ -40,11 +40,11 @@
|
|
|
40
40
|
"@typescript-eslint/parser": "^8.0.0",
|
|
41
41
|
"@vercel/ncc": "^0.38.0",
|
|
42
42
|
"eslint": "^9.0.0",
|
|
43
|
-
"eslint-config-prettier": "^
|
|
43
|
+
"eslint-config-prettier": "^10.0.1",
|
|
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",
|