> ## Documentation Index
> Fetch the complete documentation index at: https://ai-development-environment.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Workflow details

> Review a workflow's published version, graph, runs, and quick actions.

<Frame>
  <img className="block dark:hidden" src="https://mintcdn.com/ai-development-environment/XmuMCFv09SOCZYoa/images/light/workflow-detail.png?fit=max&auto=format&n=XmuMCFv09SOCZYoa&q=85&s=4493f6860047527d708c455dfffd8685" alt="Workflow details page in light theme" width="3840" height="2160" data-path="images/light/workflow-detail.png" />

  <img className="hidden dark:block" src="https://mintcdn.com/ai-development-environment/aldo79nFpNgOg3HT/images/dark/workflow-detail.png?fit=max&auto=format&n=aldo79nFpNgOg3HT&q=85&s=702afa8a888f3cfe9e313a1d338beee1" alt="Workflow details page in dark theme" width="3840" height="2160" data-path="images/dark/workflow-detail.png" />
</Frame>

The workflow details page at `/workflows/{id}` is the read-only view of one workflow: what is published, what the graph looks like, how it behaves under load, where it shows up as a button, and what it has run recently.

## Header

The name, description, and an **Enabled** or **Disabled** badge, with the top-level actions:

| Action                          | Effect                                                |
| ------------------------------- | ----------------------------------------------------- |
| **Run**                         | Starts a run of the published version                 |
| **Edit**                        | Opens the [workflow editor](/workflows/workflow-edit) |
| **Export**                      | Downloads the current definition as a file            |
| **Enable** / **Pause workflow** | Controls whether triggers can start runs              |
| **Refresh**                     | Refetches the page                                    |

## Summary cards

<Columns cols={2}>
  <Card title="Published version" icon="tag">
    The version number currently in force. Runs always execute a published version, never the working draft.
  </Card>

  <Card title="Runs" icon="list">
    How many runs this workflow has produced.
  </Card>

  <Card title="Overlap policy" icon="layer-group">
    What happens when a trigger fires while a run is already in flight — **Queue** every event, run **Concurrent**, or keep only the **Latest** pending event — and the [scope](/workflows/workflow-edit#overlap-scope) it is measured in, **Per worktree** or **Every worktree**. A concurrent workflow also shows its maximum. The card spells out what the combination means in a sentence.
  </Card>

  <Card title="Worktree concurrency" icon="lock">
    Shows whether top-level runs use **Exclusive**, **Non-exclusive**, or **Excluded** admission. A separate **Blocks Git operations** badge appears when command and terminal steps serialize with Git and worktree operations.
  </Card>
</Columns>

## Workflow graph

A read-only rendering of the published graph, using the same node styling as the editor. Steps are drawn with their category icon, so a Jira step reads the same here as it does on the canvas.

Whether the graph honors the positions you authored or auto-arranges for the available width is controlled by the **Viewer layout** setting in the editor.

## Quick actions

This is where you decide whether the workflow appears as a button on other pages, and where.

<Steps>
  <Step title="Choose an action type" icon="arrow-pointer">
    | Type               | Where the button appears                             |
    | ------------------ | ---------------------------------------------------- |
    | **Standard**       | Alongside the normal worktree actions                |
    | **Merge conflict** | Only while a worktree rebase is stopped on conflicts |
    | **GitHub Actions** | In matching GitHub pipeline and job menus            |
    | **None**           | Nowhere — the workflow is run from its own page only |
  </Step>

  <Step title="Style the button" icon="palette">
    Pick a **Button icon** and a **Button style** — Default, Outline, Secondary, or Destructive.
  </Step>

  <Step title="Scope it to repositories" icon="folder-tree">
    Leave every repository unchecked to allow all of them, or select specific repositories to build an allowlist. You need at least one codebase registered before this list has anything in it.
  </Step>

  <Step title="Save" icon="floppy-disk">
    **Save quick actions** applies the configuration.
  </Step>
</Steps>

<Note>
  A quick action only renders when the workflow is published, enabled, and has a resource trigger matching the selected action type. All four conditions have to hold — the page states this inline as a reminder.
</Note>

## Queue

The **Queue** card collects queued workflow runs and queued AI runs launched by this workflow. Each row shows its effective position, run and phase, worktree, queued time, and worktree concurrency mode.

Positions are relative to all queued work on each worktree, even though this card only includes entries associated with the current workflow. Open the linked worktree to see the complete combined queue.

<Note>
  The card lists queued work, not runs that are already active. Plan and Session lanes can advance independently until an exclusive workflow reaches the front of the combined admission order.
</Note>

## Recent runs

The latest runs with their number, status, trigger, and start time. Each links to the [workflow run page](/workflows/workflow-run). Runs that have not started yet show as **Queued**.

## Version history

Every published version, listed with its version number, **content hash**, and publish time. The content hash identifies the exact definition bytes, which makes it easy to confirm two control planes are running the same workflow.

**Export version** downloads any prior version, so you can inspect or restore an older definition.

<Tip>
  Published versions are immutable. Editing a workflow changes its draft; the running behavior does not change until you publish again.
</Tip>

## Related pages

<Columns cols={2}>
  <Card title="Workflow editor" icon="pencil" href="/workflows/workflow-edit">
    Change the graph, step configuration, and workflow settings.
  </Card>

  <Card title="Workflows" icon="diagram-project" href="/workflows/workflows">
    The index of all definitions and all runs.
  </Card>
</Columns>
