Skip to content

Commit 8a27ba0

Browse files
committed
fix format
1 parent da344f2 commit 8a27ba0

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

src/workflow-types.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,7 @@ export interface IssuesTrigger {
100100
/**
101101
* @see https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#issue_comment
102102
*/
103-
export type IssueCommentType =
104-
| "created"
105-
| "edited"
106-
| "deleted"
107-
| (string & {});
103+
export type IssueCommentType = "created" | "edited" | "deleted" | (string & {});
108104

109105
export interface IssueCommentTrigger {
110106
types?: IssueCommentType[];

0 commit comments

Comments
 (0)