Skip to content

Commit 1d73ce9

Browse files
fix: labels and assignees no longer required
1 parent 3373a08 commit 1d73ce9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/issue.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
import * as core from "@actions/core";
22
import levenshtein from 'js-levenshtein';
33

4-
export interface IParameter {
4+
export interface IParameter extends IDefaultArea {
55
area: string;
66
keywords: string[];
7+
}
8+
9+
export interface IDefaultArea {
710
labels?: string[];
811
assignees?: string[];
912
}

0 commit comments

Comments
 (0)