Skip to content
Open
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
8 changes: 6 additions & 2 deletions workflows/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,14 @@

Workflows support two trigger types.

- **Schedule (cron)** — Run on a recurring daily, weekly, or monthly schedule. Workflows queue within 10 minutes of the scheduled time.

Check warning on line 26 in workflows/index.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

workflows/index.mdx#L26

Don't put a space before or after a dash.
- **Push events** — Run when changes push to a specific repository or branch, including pull request merges and direct pushes.
- **Push events** — Run when changes land on the watched branch of a trigger repository, either through a pull request merge or a direct push to the default branch. The agent receives the merged or pushed commit as context for the run.

Check warning on line 27 in workflows/index.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

workflows/index.mdx#L27

Don't put a space before or after a dash.

You cannot combine trigger types in a single workflow. Each workflow has exactly one trigger.
You cannot combine trigger types in a single workflow. Each workflow has exactly one trigger.

<Note>
When a push event triggers a workflow, the agent runs once per change. If the same commit lands on the default branch through both a pull request merge and a direct push, the workflow only runs once.
</Note>

## Usage limits

Expand Down
Loading