You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
text: Select the version level that shall be incremented
51
+
options:
52
+
alpha:
53
+
display: alpha
54
+
value:
55
+
static: alpha
56
+
bravo:
57
+
display: bravo
58
+
value:
59
+
shell: printf bravo
60
+
e.echo:
61
+
check:
62
+
text: Select the components that are affected
63
+
separator: ", "
64
+
options:
65
+
alpha:
66
+
display: alpha
67
+
value:
68
+
static: alpha
69
+
bravo:
70
+
display: bravo
71
+
value:
72
+
shell: printf bravo
67
73
```
68
74
69
75
The first tag has the current version of the configuration schema. It needs to be equal to the major version number of the cli program. Since `complate` is still sub-one, the versioning is not yet stable and therefore, the major *and* minor version need to be equal to the ones of the cli program. +
@@ -76,13 +82,13 @@ You can resolve the value for each variable individual. Following options are av
76
82
77
83
[cols="1,1,1,1"]
78
84
|===
79
-
|Key|Behaviour|Input|Remark
80
-
85
+
|Key|Behaviour|Input|Remark|
86
+
|env|Retrieves value from the specified env var|None||None|
81
87
|static|Simply replaces the variable with a static value |None|
82
-
|prompt|Asks the user for text input (can be empty)|The prompt|
83
-
|shell|Invokes a shell command to resolve the variable (read from `STDOUT`)|None|See `shell security`
84
-
|select|Asks the user to select one item from a list|`text`: string (context), `options`: list (available options to select from)|
85
-
|check|Asks the user to select `0..n` item(s) from a list (multiselect)|`text`: string (context), `options`: list of options {display: str, value: str} (the available options to select from)|
88
+
|prompt|Asks the user for text input (can be empty)|The prompt||
89
+
|shell|Invokes a shell command to resolve the variable (read from `STDOUT`)|None|See `shell security`|
90
+
|select|Asks the user to select one item from a list|`text`: string (context), `options`: list (available options to select from)||
91
+
|check|Asks the user to select `0..n` item(s) from a list (multiselect)|`text`: string (context), `options`: list of options {display: str, value: str} (the available options to select from)||
0 commit comments