βοΈSyntax for the pipeline-forms.yml file
How to create valid and meaningful forms for your pipelines
Creating fields
fields:
- &example-text-field
label: Text field
type: text
name: TEST_TEXT_FIELD
defaultValue: I am a test
- &mandatory-text-field
<<: *example-text-field
mandatory: true
- &example-select-field
label: Select field
type: select
name: TEST_SELECT_FIELD
note: "Select any value from below list"
defaultValue: One
availableValues:
- One
- Two
- ThreeAvailable attributes
Key
Value
Usage
Available field types
Field Type
Available modifiers
Example snippet
Building forms
Presets (Groups)
Last updated