| 1234567891011121314151617181920212223 |
- [#confirmation]
- = Input: Checkbox/Boolean
- The `checkbox` type argument is a simple checkbox that can be used to toggle a boolean value. It can be especially useful to pass flags to your actions.
- Define `choices` for the checked/unchecked values. A checkbox **without** choices is not allowed with `shell:` (use `exec:` instead).
- [source,yaml]
- ----
- actions:
- - title: remove files
- shell: rm {{ useTheForce }} /tmp/Downloads/
- arguments:
- - title: Use rm -rf?
- name: useTheForce
- type: checkbox
- choices:
- - title: 1
- value: "-rf"
- - title: 0
- value: ""
- ----
|