We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dce3b35 commit 27d8633Copy full SHA for 27d8633
1 file changed
engine/playbook.ts
@@ -1,7 +1,5 @@
1
import {Step} from "./step";
2
3
-type Tag = Record<string, string[]>
4
-
5
export class Playbook{
6
public name: string;
7
public path: string;
@@ -10,5 +8,5 @@ export class Playbook{
10
8
public description: string;
11
9
public conclusion: string;
12
public steps: Step[] = [];
13
- public tags: Tag;
+ public tags: Record<string, string[]>;
14
}
0 commit comments