You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: prompts/create-ado-agentic-workflow.md
+15-10Lines changed: 15 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -85,20 +85,22 @@ engine:
85
85
86
86
### Step 3 — Schedule
87
87
88
-
Use the **fuzzy schedule syntax** (deterministic time scattering based on agent name hash prevents load spikes). Omit `schedule:` entirely for manual/trigger-only pipelines.
88
+
Use the **fuzzy schedule syntax** (deterministic time scattering based on agent name hash prevents load spikes). Omit `on.schedule` (or omit `on:` entirely) for manual/trigger-only pipelines.
89
89
90
90
**String form** (always schedules on `main`):
91
91
```yaml
92
-
schedule: daily around 14:00
92
+
on:
93
+
schedule: daily around 14:00
93
94
```
94
95
95
96
**Object form** (custom branch list):
96
97
```yaml
97
-
schedule:
98
-
run: daily around 14:00
99
-
branches:
100
-
- main
101
-
- release/*
98
+
on:
99
+
schedule:
100
+
run: daily around 14:00
101
+
branches:
102
+
- main
103
+
- release/*
102
104
```
103
105
104
106
**Frequency options:**
@@ -485,7 +487,8 @@ description: "Checks for outdated npm dependencies and opens PRs to update them"
485
487
engine:
486
488
id: copilot
487
489
model: claude-sonnet-4.5
488
-
schedule: weekly on monday around 9:00
490
+
on:
491
+
schedule: weekly on monday around 9:00
489
492
tools:
490
493
azure-devops: true
491
494
permissions:
@@ -570,7 +573,8 @@ Next steps:
570
573
Agent reads data (Kusto, ADO) and files a work item if action is needed.
571
574
572
575
```yaml
573
-
schedule: daily around 10:00
576
+
on:
577
+
schedule: daily around 10:00
574
578
tools:
575
579
azure-devops: true
576
580
permissions:
@@ -606,7 +610,8 @@ safe-outputs:
606
610
Agent makes code changes and proposes them via PR.
0 commit comments