Skip to content
Merged
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
6 changes: 4 additions & 2 deletions site/src/content/docs/setup/quick-start.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,6 @@ name: Hello from ado-aw
description: A minimal agentic pipeline example
engine:
id: copilot
on:
workflow_dispatch:
pool: AZS-1ES-L-MMS-ubuntu-22.04
---

Expand All @@ -131,6 +129,10 @@ Inspect the repository and summarize what this project does.

This file combines YAML front matter for configuration with markdown instructions for the agent.

:::note[Manual queuing]
All Azure DevOps pipelines can be queued manually from the ADO UI — no special `on:` configuration is needed for that. The `on:` key is for automatic triggers such as schedules (`on.schedule:`), PR events (`on.pr:`), or upstream pipeline completion (`on.pipeline:`). Omitting `on:` means the pipeline only runs when you queue it manually (plus any CI triggers ADO applies by default).
:::

### 2. Compile it

```bash
Expand Down