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

Commit eb39b7d

Browse files
author
David Dooling
committed
Make script & cache advanced parameters
[changelog:changed]
1 parent 8dbbd32 commit eb39b7d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

skill.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import {
1919
LineStyle,
2020
parameter,
2121
ParameterType,
22+
ParameterVisibility,
2223
resourceProvider,
2324
skill,
2425
} from "@atomist/skill";
@@ -120,13 +121,15 @@ export const Skill = skill<
120121
"Specify a shell command to be executed with `bash -c` on a Ubuntu-based environment to set up needed tools for your npm scripts",
121122
lineStyle: LineStyle.Multiple,
122123
required: false,
124+
visibility: ParameterVisibility.Advanced,
123125
},
124126
docker_cache: {
125127
type: ParameterType.StringArray,
126128
displayName: "Cache files or folders",
127129
description:
128130
"Cache and restore file system content between executions of this skill",
129131
required: false,
132+
visibility: ParameterVisibility.Advanced,
130133
},
131134
repos: parameter.repoFilter(),
132135
},

0 commit comments

Comments
 (0)