typescript-github-action-template 0.2.36 → 0.2.39
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 +134 -6
- package/package.json +4 -4
|
@@ -799,6 +799,20 @@ export type AddedToProjectEvent = Node & {
|
|
|
799
799
|
*/
|
|
800
800
|
projectColumnName: Scalars['String']['output'];
|
|
801
801
|
};
|
|
802
|
+
/** Represents a 'added_to_project_v2' event on a given issue or pull request. */
|
|
803
|
+
export type AddedToProjectV2Event = Node & ProjectV2Event & {
|
|
804
|
+
__typename: 'AddedToProjectV2Event';
|
|
805
|
+
/** Identifies the actor who performed the event. */
|
|
806
|
+
actor?: Maybe<Actor>;
|
|
807
|
+
/** Identifies the date and time when the object was created. */
|
|
808
|
+
createdAt: Scalars['DateTime']['output'];
|
|
809
|
+
/** The Node ID of the AddedToProjectV2Event object */
|
|
810
|
+
id: Scalars['ID']['output'];
|
|
811
|
+
/** Project referenced by event. */
|
|
812
|
+
project?: Maybe<ProjectV2>;
|
|
813
|
+
/** Did this event result from workflow automation? */
|
|
814
|
+
wasAutomated: Scalars['Boolean']['output'];
|
|
815
|
+
};
|
|
802
816
|
/** An announcement banner for an enterprise or organization. */
|
|
803
817
|
export type AnnouncementBanner = {
|
|
804
818
|
__typename: 'AnnouncementBanner';
|
|
@@ -3507,6 +3521,20 @@ export type ConvertToDraftEvent = Node & UniformResourceLocatable & {
|
|
|
3507
3521
|
/** The HTTP URL for this convert to draft event. */
|
|
3508
3522
|
url: Scalars['URI']['output'];
|
|
3509
3523
|
};
|
|
3524
|
+
/** Represents a 'converted_from_draft' event on a given issue or pull request. */
|
|
3525
|
+
export type ConvertedFromDraftEvent = Node & ProjectV2Event & {
|
|
3526
|
+
__typename: 'ConvertedFromDraftEvent';
|
|
3527
|
+
/** Identifies the actor who performed the event. */
|
|
3528
|
+
actor?: Maybe<Actor>;
|
|
3529
|
+
/** Identifies the date and time when the object was created. */
|
|
3530
|
+
createdAt: Scalars['DateTime']['output'];
|
|
3531
|
+
/** The Node ID of the ConvertedFromDraftEvent object */
|
|
3532
|
+
id: Scalars['ID']['output'];
|
|
3533
|
+
/** Project referenced by event. */
|
|
3534
|
+
project?: Maybe<ProjectV2>;
|
|
3535
|
+
/** Did this event result from workflow automation? */
|
|
3536
|
+
wasAutomated: Scalars['Boolean']['output'];
|
|
3537
|
+
};
|
|
3510
3538
|
/** Represents a 'converted_note_to_issue' event on a given issue or pull request. */
|
|
3511
3539
|
export type ConvertedNoteToIssueEvent = Node & {
|
|
3512
3540
|
__typename: 'ConvertedNoteToIssueEvent';
|
|
@@ -9361,6 +9389,10 @@ export type IssueDependenciesSummary = {
|
|
|
9361
9389
|
blockedBy: Scalars['Int']['output'];
|
|
9362
9390
|
/** Count of issues this issue is blocking */
|
|
9363
9391
|
blocking: Scalars['Int']['output'];
|
|
9392
|
+
/** Total count of issues this issue is blocked by (open and closed) */
|
|
9393
|
+
totalBlockedBy: Scalars['Int']['output'];
|
|
9394
|
+
/** Total count of issues this issue is blocking (open and closed) */
|
|
9395
|
+
totalBlocking: Scalars['Int']['output'];
|
|
9364
9396
|
};
|
|
9365
9397
|
/** Ordering options issue dependencies */
|
|
9366
9398
|
export type IssueDependencyOrder = {
|
|
@@ -9508,7 +9540,7 @@ export type IssueTimelineItemEdge = {
|
|
|
9508
9540
|
node?: Maybe<IssueTimelineItem>;
|
|
9509
9541
|
};
|
|
9510
9542
|
/** An item in an issue timeline */
|
|
9511
|
-
export type IssueTimelineItems = AddedToProjectEvent | AssignedEvent | BlockedByAddedEvent | BlockedByRemovedEvent | BlockingAddedEvent | BlockingRemovedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DisconnectedEvent | IssueComment | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | LabeledEvent | LockedEvent | MarkedAsDuplicateEvent | MentionedEvent | MilestonedEvent | MovedColumnsInProjectEvent | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedEvent | ReferencedEvent | RemovedFromProjectEvent | RenamedTitleEvent | ReopenedEvent | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | TransferredEvent | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | UserBlockedEvent;
|
|
9543
|
+
export type IssueTimelineItems = AddedToProjectEvent | AddedToProjectV2Event | AssignedEvent | BlockedByAddedEvent | BlockedByRemovedEvent | BlockingAddedEvent | BlockingRemovedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertedFromDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DisconnectedEvent | IssueComment | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | LabeledEvent | LockedEvent | MarkedAsDuplicateEvent | MentionedEvent | MilestonedEvent | MovedColumnsInProjectEvent | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedEvent | ProjectV2ItemStatusChangedEvent | ReferencedEvent | RemovedFromProjectEvent | RemovedFromProjectV2Event | RenamedTitleEvent | ReopenedEvent | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | TransferredEvent | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | UserBlockedEvent;
|
|
9512
9544
|
/** The connection type for IssueTimelineItems. */
|
|
9513
9545
|
export type IssueTimelineItemsConnection = {
|
|
9514
9546
|
__typename: 'IssueTimelineItemsConnection';
|
|
@@ -9539,6 +9571,8 @@ export type IssueTimelineItemsEdge = {
|
|
|
9539
9571
|
export type IssueTimelineItemsItemType =
|
|
9540
9572
|
/** Represents a 'added_to_project' event on a given issue or pull request. */
|
|
9541
9573
|
'ADDED_TO_PROJECT_EVENT'
|
|
9574
|
+
/** Represents a 'added_to_project_v2' event on a given issue or pull request. */
|
|
9575
|
+
| 'ADDED_TO_PROJECT_V2_EVENT'
|
|
9542
9576
|
/** Represents an 'assigned' event on any assignable object. */
|
|
9543
9577
|
| 'ASSIGNED_EVENT'
|
|
9544
9578
|
/** Represents a 'blocked_by_added' event on a given issue. */
|
|
@@ -9555,6 +9589,8 @@ export type IssueTimelineItemsItemType =
|
|
|
9555
9589
|
| 'COMMENT_DELETED_EVENT'
|
|
9556
9590
|
/** Represents a 'connected' event on a given issue or pull request. */
|
|
9557
9591
|
| 'CONNECTED_EVENT'
|
|
9592
|
+
/** Represents a 'converted_from_draft' event on a given issue or pull request. */
|
|
9593
|
+
| 'CONVERTED_FROM_DRAFT_EVENT'
|
|
9558
9594
|
/** Represents a 'converted_note_to_issue' event on a given issue or pull request. */
|
|
9559
9595
|
| 'CONVERTED_NOTE_TO_ISSUE_EVENT'
|
|
9560
9596
|
/** Represents a 'converted_to_discussion' event on a given issue. */
|
|
@@ -9591,10 +9627,14 @@ export type IssueTimelineItemsItemType =
|
|
|
9591
9627
|
| 'PARENT_ISSUE_REMOVED_EVENT'
|
|
9592
9628
|
/** Represents a 'pinned' event on a given issue or pull request. */
|
|
9593
9629
|
| 'PINNED_EVENT'
|
|
9630
|
+
/** Represents a 'project_v2_item_status_changed' event on a given issue or pull request. */
|
|
9631
|
+
| 'PROJECT_V2_ITEM_STATUS_CHANGED_EVENT'
|
|
9594
9632
|
/** Represents a 'referenced' event on a given `ReferencedSubject`. */
|
|
9595
9633
|
| 'REFERENCED_EVENT'
|
|
9596
9634
|
/** Represents a 'removed_from_project' event on a given issue or pull request. */
|
|
9597
9635
|
| 'REMOVED_FROM_PROJECT_EVENT'
|
|
9636
|
+
/** Represents a 'removed_from_project_v2' event on a given issue or pull request. */
|
|
9637
|
+
| 'REMOVED_FROM_PROJECT_V2_EVENT'
|
|
9598
9638
|
/** Represents a 'renamed' event on a given issue or pull request */
|
|
9599
9639
|
| 'RENAMED_TITLE_EVENT'
|
|
9600
9640
|
/** Represents a 'reopened' event on any `Closable`. */
|
|
@@ -17021,6 +17061,36 @@ export type OrganizationOrderField =
|
|
|
17021
17061
|
'CREATED_AT'
|
|
17022
17062
|
/** Order organizations by login */
|
|
17023
17063
|
| 'LOGIN';
|
|
17064
|
+
/** Parameters to be used for the organization_property condition */
|
|
17065
|
+
export type OrganizationPropertyConditionTarget = {
|
|
17066
|
+
__typename: 'OrganizationPropertyConditionTarget';
|
|
17067
|
+
/** Array of organization properties that must not match. */
|
|
17068
|
+
exclude: Array<OrganizationPropertyTargetDefinition>;
|
|
17069
|
+
/** Array of organization properties that must match */
|
|
17070
|
+
include: Array<OrganizationPropertyTargetDefinition>;
|
|
17071
|
+
};
|
|
17072
|
+
/** Parameters to be used for the organization_property condition */
|
|
17073
|
+
export type OrganizationPropertyConditionTargetInput = {
|
|
17074
|
+
/** Array of organization properties that must not match. */
|
|
17075
|
+
exclude: Array<OrganizationPropertyTargetDefinitionInput>;
|
|
17076
|
+
/** Array of organization properties that must match */
|
|
17077
|
+
include: Array<OrganizationPropertyTargetDefinitionInput>;
|
|
17078
|
+
};
|
|
17079
|
+
/** A property that must match */
|
|
17080
|
+
export type OrganizationPropertyTargetDefinition = {
|
|
17081
|
+
__typename: 'OrganizationPropertyTargetDefinition';
|
|
17082
|
+
/** The name of the property */
|
|
17083
|
+
name: Scalars['String']['output'];
|
|
17084
|
+
/** The values to match for */
|
|
17085
|
+
propertyValues: Array<Scalars['String']['output']>;
|
|
17086
|
+
};
|
|
17087
|
+
/** A property that must match */
|
|
17088
|
+
export type OrganizationPropertyTargetDefinitionInput = {
|
|
17089
|
+
/** The name of the property */
|
|
17090
|
+
name: Scalars['String']['input'];
|
|
17091
|
+
/** The values to match for */
|
|
17092
|
+
propertyValues: Array<Scalars['String']['input']>;
|
|
17093
|
+
};
|
|
17024
17094
|
/** An organization teams hovercard context */
|
|
17025
17095
|
export type OrganizationTeamsHovercardContext = HovercardContext & {
|
|
17026
17096
|
__typename: 'OrganizationTeamsHovercardContext';
|
|
@@ -18433,6 +18503,7 @@ export type ProjectV2ItemsArgs = {
|
|
|
18433
18503
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
18434
18504
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
18435
18505
|
orderBy?: InputMaybe<ProjectV2ItemOrder>;
|
|
18506
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
18436
18507
|
};
|
|
18437
18508
|
/** New projects that manage issues, pull requests and drafts using tables and boards. */
|
|
18438
18509
|
export type ProjectV2RepositoriesArgs = {
|
|
@@ -18545,6 +18616,13 @@ export type ProjectV2Edge = {
|
|
|
18545
18616
|
/** The item at the end of the edge. */
|
|
18546
18617
|
node?: Maybe<ProjectV2>;
|
|
18547
18618
|
};
|
|
18619
|
+
/** Represents an event related to a project on the timeline of an issue or pull request. */
|
|
18620
|
+
export type ProjectV2Event = {
|
|
18621
|
+
/** Project referenced by event. */
|
|
18622
|
+
project?: Maybe<ProjectV2>;
|
|
18623
|
+
/** Did this event result from workflow automation? */
|
|
18624
|
+
wasAutomated: Scalars['Boolean']['output'];
|
|
18625
|
+
};
|
|
18548
18626
|
/** A field inside a project. */
|
|
18549
18627
|
export type ProjectV2Field = Node & ProjectV2FieldCommon & {
|
|
18550
18628
|
__typename: 'ProjectV2Field';
|
|
@@ -19012,6 +19090,24 @@ export type ProjectV2ItemOrder = {
|
|
|
19012
19090
|
export type ProjectV2ItemOrderField =
|
|
19013
19091
|
/** Order project v2 items by the their position in the project */
|
|
19014
19092
|
'POSITION';
|
|
19093
|
+
/** Represents a 'project_v2_item_status_changed' event on a given issue or pull request. */
|
|
19094
|
+
export type ProjectV2ItemStatusChangedEvent = Node & ProjectV2Event & {
|
|
19095
|
+
__typename: 'ProjectV2ItemStatusChangedEvent';
|
|
19096
|
+
/** Identifies the actor who performed the event. */
|
|
19097
|
+
actor?: Maybe<Actor>;
|
|
19098
|
+
/** Identifies the date and time when the object was created. */
|
|
19099
|
+
createdAt: Scalars['DateTime']['output'];
|
|
19100
|
+
/** The Node ID of the ProjectV2ItemStatusChangedEvent object */
|
|
19101
|
+
id: Scalars['ID']['output'];
|
|
19102
|
+
/** The previous status of the project item. */
|
|
19103
|
+
previousStatus: Scalars['String']['output'];
|
|
19104
|
+
/** Project referenced by event. */
|
|
19105
|
+
project?: Maybe<ProjectV2>;
|
|
19106
|
+
/** The new status of the project item. */
|
|
19107
|
+
status: Scalars['String']['output'];
|
|
19108
|
+
/** Did this event result from workflow automation? */
|
|
19109
|
+
wasAutomated: Scalars['Boolean']['output'];
|
|
19110
|
+
};
|
|
19015
19111
|
/** The type of a project item. */
|
|
19016
19112
|
export type ProjectV2ItemType =
|
|
19017
19113
|
/** Draft Issue */
|
|
@@ -20793,7 +20889,7 @@ export type PullRequestTimelineItemEdge = {
|
|
|
20793
20889
|
node?: Maybe<PullRequestTimelineItem>;
|
|
20794
20890
|
};
|
|
20795
20891
|
/** An item in a pull request timeline */
|
|
20796
|
-
export type PullRequestTimelineItems = AddedToMergeQueueEvent | AddedToProjectEvent | AssignedEvent | AutoMergeDisabledEvent | AutoMergeEnabledEvent | AutoRebaseEnabledEvent | AutoSquashEnabledEvent | AutomaticBaseChangeFailedEvent | AutomaticBaseChangeSucceededEvent | BaseRefChangedEvent | BaseRefDeletedEvent | BaseRefForcePushedEvent | BlockedByAddedEvent | BlockedByRemovedEvent | BlockingAddedEvent | BlockingRemovedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertToDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DeployedEvent | DeploymentEnvironmentChangedEvent | DisconnectedEvent | HeadRefDeletedEvent | HeadRefForcePushedEvent | HeadRefRestoredEvent | IssueComment | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | LabeledEvent | LockedEvent | MarkedAsDuplicateEvent | MentionedEvent | MergedEvent | MilestonedEvent | MovedColumnsInProjectEvent | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedEvent | PullRequestCommit | PullRequestCommitCommentThread | PullRequestReview | PullRequestReviewThread | PullRequestRevisionMarker | ReadyForReviewEvent | ReferencedEvent | RemovedFromMergeQueueEvent | RemovedFromProjectEvent | RenamedTitleEvent | ReopenedEvent | ReviewDismissedEvent | ReviewRequestRemovedEvent | ReviewRequestedEvent | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | TransferredEvent | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | UserBlockedEvent;
|
|
20892
|
+
export type PullRequestTimelineItems = AddedToMergeQueueEvent | AddedToProjectEvent | AddedToProjectV2Event | AssignedEvent | AutoMergeDisabledEvent | AutoMergeEnabledEvent | AutoRebaseEnabledEvent | AutoSquashEnabledEvent | AutomaticBaseChangeFailedEvent | AutomaticBaseChangeSucceededEvent | BaseRefChangedEvent | BaseRefDeletedEvent | BaseRefForcePushedEvent | BlockedByAddedEvent | BlockedByRemovedEvent | BlockingAddedEvent | BlockingRemovedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertToDraftEvent | ConvertedFromDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DeployedEvent | DeploymentEnvironmentChangedEvent | DisconnectedEvent | HeadRefDeletedEvent | HeadRefForcePushedEvent | HeadRefRestoredEvent | IssueComment | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | LabeledEvent | LockedEvent | MarkedAsDuplicateEvent | MentionedEvent | MergedEvent | MilestonedEvent | MovedColumnsInProjectEvent | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedEvent | ProjectV2ItemStatusChangedEvent | PullRequestCommit | PullRequestCommitCommentThread | PullRequestReview | PullRequestReviewThread | PullRequestRevisionMarker | ReadyForReviewEvent | ReferencedEvent | RemovedFromMergeQueueEvent | RemovedFromProjectEvent | RemovedFromProjectV2Event | RenamedTitleEvent | ReopenedEvent | ReviewDismissedEvent | ReviewRequestRemovedEvent | ReviewRequestedEvent | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | TransferredEvent | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | UserBlockedEvent;
|
|
20797
20893
|
/** The connection type for PullRequestTimelineItems. */
|
|
20798
20894
|
export type PullRequestTimelineItemsConnection = {
|
|
20799
20895
|
__typename: 'PullRequestTimelineItemsConnection';
|
|
@@ -20826,6 +20922,8 @@ export type PullRequestTimelineItemsItemType =
|
|
|
20826
20922
|
'ADDED_TO_MERGE_QUEUE_EVENT'
|
|
20827
20923
|
/** Represents a 'added_to_project' event on a given issue or pull request. */
|
|
20828
20924
|
| 'ADDED_TO_PROJECT_EVENT'
|
|
20925
|
+
/** Represents a 'added_to_project_v2' event on a given issue or pull request. */
|
|
20926
|
+
| 'ADDED_TO_PROJECT_V2_EVENT'
|
|
20829
20927
|
/** Represents an 'assigned' event on any assignable object. */
|
|
20830
20928
|
| 'ASSIGNED_EVENT'
|
|
20831
20929
|
/** Represents a 'automatic_base_change_failed' event on a given pull request. */
|
|
@@ -20860,6 +20958,8 @@ export type PullRequestTimelineItemsItemType =
|
|
|
20860
20958
|
| 'COMMENT_DELETED_EVENT'
|
|
20861
20959
|
/** Represents a 'connected' event on a given issue or pull request. */
|
|
20862
20960
|
| 'CONNECTED_EVENT'
|
|
20961
|
+
/** Represents a 'converted_from_draft' event on a given issue or pull request. */
|
|
20962
|
+
| 'CONVERTED_FROM_DRAFT_EVENT'
|
|
20863
20963
|
/** Represents a 'converted_note_to_issue' event on a given issue or pull request. */
|
|
20864
20964
|
| 'CONVERTED_NOTE_TO_ISSUE_EVENT'
|
|
20865
20965
|
/** Represents a 'converted_to_discussion' event on a given issue. */
|
|
@@ -20910,6 +21010,8 @@ export type PullRequestTimelineItemsItemType =
|
|
|
20910
21010
|
| 'PARENT_ISSUE_REMOVED_EVENT'
|
|
20911
21011
|
/** Represents a 'pinned' event on a given issue or pull request. */
|
|
20912
21012
|
| 'PINNED_EVENT'
|
|
21013
|
+
/** Represents a 'project_v2_item_status_changed' event on a given issue or pull request. */
|
|
21014
|
+
| 'PROJECT_V2_ITEM_STATUS_CHANGED_EVENT'
|
|
20913
21015
|
/** Represents a Git commit part of a pull request. */
|
|
20914
21016
|
| 'PULL_REQUEST_COMMIT'
|
|
20915
21017
|
/** Represents a commit comment thread part of a pull request. */
|
|
@@ -20928,6 +21030,8 @@ export type PullRequestTimelineItemsItemType =
|
|
|
20928
21030
|
| 'REMOVED_FROM_MERGE_QUEUE_EVENT'
|
|
20929
21031
|
/** Represents a 'removed_from_project' event on a given issue or pull request. */
|
|
20930
21032
|
| 'REMOVED_FROM_PROJECT_EVENT'
|
|
21033
|
+
/** Represents a 'removed_from_project_v2' event on a given issue or pull request. */
|
|
21034
|
+
| 'REMOVED_FROM_PROJECT_V2_EVENT'
|
|
20931
21035
|
/** Represents a 'renamed' event on a given issue or pull request */
|
|
20932
21036
|
| 'RENAMED_TITLE_EVENT'
|
|
20933
21037
|
/** Represents a 'reopened' event on any `Closable`. */
|
|
@@ -22093,6 +22197,20 @@ export type RemovedFromProjectEvent = Node & {
|
|
|
22093
22197
|
*/
|
|
22094
22198
|
projectColumnName: Scalars['String']['output'];
|
|
22095
22199
|
};
|
|
22200
|
+
/** Represents a 'removed_from_project_v2' event on a given issue or pull request. */
|
|
22201
|
+
export type RemovedFromProjectV2Event = Node & ProjectV2Event & {
|
|
22202
|
+
__typename: 'RemovedFromProjectV2Event';
|
|
22203
|
+
/** Identifies the actor who performed the event. */
|
|
22204
|
+
actor?: Maybe<Actor>;
|
|
22205
|
+
/** Identifies the date and time when the object was created. */
|
|
22206
|
+
createdAt: Scalars['DateTime']['output'];
|
|
22207
|
+
/** The Node ID of the RemovedFromProjectV2Event object */
|
|
22208
|
+
id: Scalars['ID']['output'];
|
|
22209
|
+
/** Project referenced by event. */
|
|
22210
|
+
project?: Maybe<ProjectV2>;
|
|
22211
|
+
/** Did this event result from workflow automation? */
|
|
22212
|
+
wasAutomated: Scalars['Boolean']['output'];
|
|
22213
|
+
};
|
|
22096
22214
|
/** Represents a 'renamed' event on a given issue or pull request */
|
|
22097
22215
|
export type RenamedTitleEvent = Node & {
|
|
22098
22216
|
__typename: 'RenamedTitleEvent';
|
|
@@ -25441,6 +25559,8 @@ export type RepositoryRule = Node & {
|
|
|
25441
25559
|
/** Set of conditions that determine if a ruleset will evaluate */
|
|
25442
25560
|
export type RepositoryRuleConditions = {
|
|
25443
25561
|
__typename: 'RepositoryRuleConditions';
|
|
25562
|
+
/** Configuration for the organization_property condition */
|
|
25563
|
+
organizationProperty?: Maybe<OrganizationPropertyConditionTarget>;
|
|
25444
25564
|
/** Configuration for the ref_name condition */
|
|
25445
25565
|
refName?: Maybe<RefNameConditionTarget>;
|
|
25446
25566
|
/** Configuration for the repository_id condition */
|
|
@@ -25452,6 +25572,8 @@ export type RepositoryRuleConditions = {
|
|
|
25452
25572
|
};
|
|
25453
25573
|
/** Specifies the conditions required for a ruleset to evaluate */
|
|
25454
25574
|
export type RepositoryRuleConditionsInput = {
|
|
25575
|
+
/** Configuration for the organization_property condition */
|
|
25576
|
+
organizationProperty?: InputMaybe<OrganizationPropertyConditionTargetInput>;
|
|
25455
25577
|
/** Configuration for the ref_name condition */
|
|
25456
25578
|
refName?: InputMaybe<RefNameConditionTargetInput>;
|
|
25457
25579
|
/** Configuration for the repository_id condition */
|
|
@@ -26023,6 +26145,8 @@ export type RepositoryVulnerabilityAlertConnection = {
|
|
|
26023
26145
|
export type RepositoryVulnerabilityAlertDependencyRelationship =
|
|
26024
26146
|
/** A direct dependency of your project */
|
|
26025
26147
|
'DIRECT'
|
|
26148
|
+
/** The relationship could not be determined */
|
|
26149
|
+
| 'INCONCLUSIVE'
|
|
26026
26150
|
/** A transitive dependency of your project */
|
|
26027
26151
|
| 'TRANSITIVE'
|
|
26028
26152
|
/** The relationship is unknown */
|
|
@@ -31545,14 +31669,18 @@ export type UpdateProjectV2FieldInput = {
|
|
|
31545
31669
|
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
31546
31670
|
/** The ID of the field to update. */
|
|
31547
31671
|
fieldId: Scalars['ID']['input'];
|
|
31548
|
-
/**
|
|
31672
|
+
/**
|
|
31673
|
+
* Configuration for a field of type ITERATION. Empty input is ignored, provided
|
|
31674
|
+
* values overwrite the existing configuration, and existing configuration should
|
|
31675
|
+
* be fetched for partial updates.
|
|
31676
|
+
*/
|
|
31549
31677
|
iterationConfiguration?: InputMaybe<ProjectV2IterationFieldConfigurationInput>;
|
|
31550
31678
|
/** The name to update. */
|
|
31551
31679
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
31552
31680
|
/**
|
|
31553
|
-
* Options for a field of type SINGLE_SELECT.
|
|
31554
|
-
*
|
|
31555
|
-
*
|
|
31681
|
+
* Options for a field of type SINGLE_SELECT. Empty input is ignored, provided
|
|
31682
|
+
* values overwrite existing options, and existing options should be fetched for
|
|
31683
|
+
* partial updates.
|
|
31556
31684
|
*/
|
|
31557
31685
|
singleSelectOptions?: InputMaybe<Array<ProjectV2SingleSelectFieldOptionInput>>;
|
|
31558
31686
|
};
|
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.39",
|
|
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",
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"@0no-co/graphqlsp": "^1.12.12",
|
|
31
31
|
"@eslint/eslintrc": "^3.0.2",
|
|
32
32
|
"@eslint/js": "^9.2.0",
|
|
33
|
-
"@graphql-codegen/cli": "6.0.
|
|
33
|
+
"@graphql-codegen/cli": "6.0.1",
|
|
34
34
|
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
|
|
35
|
-
"@graphql-codegen/typescript": "5.0.
|
|
36
|
-
"@graphql-codegen/typescript-document-nodes": "5.0.
|
|
35
|
+
"@graphql-codegen/typescript": "5.0.2",
|
|
36
|
+
"@graphql-codegen/typescript-document-nodes": "5.0.2",
|
|
37
37
|
"@serverless-guru/prettier-plugin-import-order": "^0.4.2",
|
|
38
38
|
"@types/node": "^24.0.0",
|
|
39
39
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|