improvement(sim-trigger): change execution terminology to run#5033
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
PR SummaryLow Risk Overview Execution Error / Execution Success dropdown labels become Run Error / Run Success; descriptions, setup instructions, and best-practices text now say "runs" instead of "executions." Docs tab Execution Events is renamed Run Events. Internal option IDs ( Reviewed by Cursor Bugbot for commit e29887c. Configure here. |
Greptile SummaryThis PR renames user-facing "execution" terminology to "run" across the Sim trigger block, its trigger config, and the corresponding documentation. The internal option IDs (
Confidence Score: 5/5Safe to merge — all changes are display-only label and description text; no logic, schema, or stored-ID values were modified. Every change is confined to user-visible strings: dropdown labels, tooltip descriptions, and documentation. The internal event IDs that drive matching logic and are persisted in stored configurations (execution_error, execution_success) are untouched, so no existing workflows can break. The update is consistent across all three files with no missed occurrences in user-facing surfaces. No files require special attention. Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[Workspace Event Occurs] --> B{Event Type}
B -->|execution_error| C["Label: Run Error\n(id unchanged)"]
B -->|execution_success| D["Label: Run Success\n(id unchanged)"]
B -->|workflow_deployed| E[Workflow Deployed]
B -->|workflow_undeployed| F[Workflow Undeployed]
B -->|alert conditions| G["consecutive_failures\nlatency_threshold\nlatency_spike\ncost_threshold\nerror_count\nno_activity"]
C --> H[Sim Trigger Fires]
D --> H
E --> H
F --> H
G --> H
H --> I[Downstream workflow blocks]
style C fill:#f9f,stroke:#333
style D fill:#f9f,stroke:#333
Reviews (1): Last reviewed commit: "improvement(sim-trigger): change executi..." | Re-trigger Greptile |
Summary
Sim trigger terminology from "execution" to "run"
Type of Change
Testing
N/A
Checklist