Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit a154051

Browse files
author
David Dooling
committed
Clean up parameters, required & defaults
1 parent 698d548 commit a154051

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

lib/configuration.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
*/
1616

1717
export interface Configuration {
18-
version: string;
19-
scripts: string[];
2018
publish: string;
21-
access: string;
22-
tag: string[];
23-
command: string;
24-
docker_cache: string[];
19+
scripts: string[];
20+
version?: string;
21+
access?: string;
22+
tag?: string[];
23+
command?: string;
24+
docker_cache?: string[];
2525
}

skill.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export const Skill = skill<Configuration & { repos: any }>({
6969
{ text: "All branches", value: "all" },
7070
],
7171
defaultValue: "no",
72-
required: false,
72+
required: true,
7373
},
7474
access: {
7575
type: ParameterType.SingleChoice,

0 commit comments

Comments
 (0)