Files
wehub-resource-sync a9cd7750f4
CI / unit-test (push) Has been cancelled
CI / detect-changes (push) Has been cancelled
CI / build (push) Has been cancelled
Publish docs via GitHub Pages / Deploy docs (push) Has been cancelled
CI / test-harness (push) Has been cancelled
CI / generate-e2e-matrix (push) Has been cancelled
CI / e2e (push) Has been cancelled
CI / build-ui (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
UI v2 Integration CI / E2E (Integration) (push) Has been cancelled
UI v2 CI / Lint, Format & Test (push) Has been cancelled
UI v2 CI / E2E (Mocked) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:37:56 +08:00

30 lines
832 B
JSON

{
"name": "daily_report_workflow",
"description": "Fetches a sample dataset on a schedule. Used as a scheduler demo.",
"version": 1,
"tasks": [
{
"name": "fetch_report_data",
"taskReferenceName": "fetch_report_data_ref",
"type": "HTTP",
"inputParameters": {
"http_request": {
"uri": "https://jsonplaceholder.typicode.com/todos?userId=1",
"method": "GET",
"connectionTimeOut": 3000,
"readTimeOut": 3000
}
}
}
],
"outputParameters": {
"statusCode": "${fetch_report_data_ref.output.response.statusCode}",
"itemCount": "${fetch_report_data_ref.output.response.body.length()}"
},
"schemaVersion": 2,
"restartable": true,
"ownerEmail": "demo@example.com",
"timeoutPolicy": "TIME_OUT_WF",
"timeoutSeconds": 120
}