YAML Template
script_name: "Excel Invoice Merger"
script_description: |
Merge multiple Excel invoice files into a single consolidated report,
summarising totals and highlighting discrepancies.
python_version: "3.12"
dependencies:
- pandas==2.2.2
- openpyxl==3.1.2
inputs:
- arg: input_file
title: Upload Excel File
required: true
type: file
extensions: [xlsx, xls]
- arg: simple_text
title: Label
type: text
placeholder: "Experiment 42"
- arg: environment
title: Environment
type: dropdown
required: true
options:
- value: dev
label: Development
- value: staging
label: Staging
- value: prod
label: Production
- arg: assignee
title: Assign User
type: multiselect
options:
- value: "u123"
label: "Alice Lee"
- value: "u456"
label: "Bob Zhang"
- arg: schedule_date
title: Execution Date
type: date
required: true
- arg: notes
title: Add Notes
type: textarea
placeholder: "Optional context here"
- arg: accept_terms
title: Save to database
type: checkbox
Notes on Fields
Last updated