> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cassidyai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Only continue if

> Stop a Workflow if specified conditions are not met — use it to filter, gate, or conditionally halt execution.

Stop a [Workflow](/workflows/overview) from continuing if one or more conditions are not met. Use this to gate execution — for example, only proceed if a support ticket is marked as high priority, or if a sentiment analysis returned "Negative."

<Steps>
  <Step title="Add the action">
    In the Workflow builder, click **+** between blocks and select **Only Continue If** from the action library.

    <Frame>
      <img src="https://mintcdn.com/cassidy/2kKOUhntNdt3MMyN/images/reference/only-continue-if-img-0.png?fit=max&auto=format&n=2kKOUhntNdt3MMyN&q=85&s=4c674df944d530ea10443bc0cce21420" alt="Action library with Only Continue If selected" width="669" height="273" data-path="images/reference/only-continue-if-img-0.png" />
    </Frame>

    <Frame>
      <img src="https://mintcdn.com/cassidy/2kKOUhntNdt3MMyN/images/reference/only-continue-if-img-1.png?fit=max&auto=format&n=2kKOUhntNdt3MMyN&q=85&s=07e7a4501906eaf139ade2b13839db54" alt="Adding the Only Continue If action between blocks" width="637" height="305" data-path="images/reference/only-continue-if-img-1.png" />
    </Frame>
  </Step>

  <Step title="Add a condition">
    Click **Add Condition** and configure:

    1. **Field** — The variable to evaluate (from a previous step or the trigger)
    2. **Operator** — The comparison type (Equals, Contains, etc.)
    3. **Value** — The value to compare against

    <Frame>
      <img src="https://mintcdn.com/cassidy/2kKOUhntNdt3MMyN/images/reference/only-continue-if-img-3.png?fit=max&auto=format&n=2kKOUhntNdt3MMyN&q=85&s=d3c06968f68530d605e8196c4b8ed512" alt="Add Condition button" width="632" height="438" data-path="images/reference/only-continue-if-img-3.png" />
    </Frame>

    <Frame>
      <img src="https://mintcdn.com/cassidy/2kKOUhntNdt3MMyN/images/reference/only-continue-if-img-4.png?fit=max&auto=format&n=2kKOUhntNdt3MMyN&q=85&s=10b1104a18007dc46b73cdd39638d7ad" alt="Condition builder with field, operator, and value filled in" width="635" height="432" data-path="images/reference/only-continue-if-img-4.png" />
    </Frame>

    For example: If `#Analyze Sentiment of Ticket` contains `Negative`, continue.
  </Step>

  <Step title="Add more conditions (optional)">
    Click **Add Condition** to add additional conditions. **All** conditions must be met for the Workflow to continue. If any condition fails, the Workflow stops.
  </Step>
</Steps>

<Tip>Need different branches instead of just stop/continue? Use [Paths](/reference/actions/paths) to route your Workflow down different paths based on conditions.</Tip>

## Related

* [Paths](/reference/actions/paths)
* [Build and configure Workflows](/workflows/building)
