Skip to content

Commit

Permalink
make testingMode input type 'choice' true/false
Browse files Browse the repository at this point in the history
Signed-off-by: Sumu <[email protected]>
  • Loading branch information
sumupitchayan committed Sep 27, 2023
1 parent c658458 commit 23e9f2c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/k8s-upgrade-automation.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion src/k8s-automation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,14 @@ export class K8sVersionUpgradeAutomation extends Component {
workflowDispatch: {
inputs: {
testingMode: {
type: 'choice',
description: 'Testing Mode',
required: true,
default: false,
default: 'false',
options: [
'true',
'false',
],
},
},
},
Expand Down

0 comments on commit 23e9f2c

Please sign in to comment.