Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions release-route.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ config:
name: "publish the release"
worker_type: general
depends_on: [release-gate]
condition: release-gate.output.verdict == "proceed"
prompt_template:
inline: >-
Execute the confirmed release exactly as briefed: create the tag,
Expand Down
5 changes: 5 additions & 0 deletions ultra-flow-route.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ config:
name: "stage 2: project design (spec + how)"
worker_type: plan
depends_on: [cp-after-exploration]
condition: cp-after-exploration.output.verdict == "continue"
prompt_template:
inline: >-
Design stage for the workflow objective. WHAT: define the behavior contract —
Expand Down Expand Up @@ -120,6 +121,7 @@ config:
name: "stage 3: project development"
worker_type: build
depends_on: [cp-design-decision]
condition: cp-design-decision.output.verdict == "continue"
prompt_template:
inline: >-
Development stage for the workflow objective. Follow the project-development
Expand Down Expand Up @@ -159,6 +161,7 @@ config:
name: "stage 4: test and acceptance evidence"
worker_type: general
depends_on: [cp-after-development]
condition: cp-after-development.output.verdict == "continue"
prompt_template:
inline: >-
Test and acceptance stage for the workflow objective. Run the documented gates
Expand Down Expand Up @@ -220,6 +223,7 @@ config:
name: "stage 5: build and release (optional)"
worker_type: general
depends_on: [cp-acceptance-decision]
condition: cp-acceptance-decision.output.verdict == "continue"
prompt_template:
inline: >-
Release stage for the workflow objective. Probe the repository's release
Expand Down Expand Up @@ -260,6 +264,7 @@ config:
name: "stage 6: summary"
worker_type: general
depends_on: [cp-after-release]
condition: cp-after-release.output.verdict == "continue"
prompt_template:
inline: >-
Consolidated report for the workflow objective: stages executed including
Expand Down
Loading