We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3373a08 commit 1d73ce9Copy full SHA for 1d73ce9
src/issue.ts
@@ -1,9 +1,12 @@
1
import * as core from "@actions/core";
2
import levenshtein from 'js-levenshtein';
3
4
-export interface IParameter {
+export interface IParameter extends IDefaultArea {
5
area: string;
6
keywords: string[];
7
+}
8
+
9
+export interface IDefaultArea {
10
labels?: string[];
11
assignees?: string[];
12
}
0 commit comments