> ## 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.

# Rename workflow run

> Give each Workflow run a clear, recognizable name using fixed text and variables, so your team can quickly identify it in run history.

Give the current [Workflow](/workflows/overview) run a custom name so it is easier to find in run history. Use fixed text, information from the trigger, or variables from earlier actions to create a meaningful name for every run.

For example, a customer onboarding Workflow could name each run `Onboarding - Acme`, where `Acme` comes from the customer name in the trigger.

<Steps>
  <Step title="Add the action">
    In the Workflow builder, click **+** where you want to rename the run, then select **Rename Workflow Run** from the action library.
  </Step>

  <Step title="Set the run name">
    In **Run Name**, enter the text you want to use. Press **#** to add variables from the trigger or earlier actions.

    For example, combine `Follow-up - ` with a company name variable to create names such as `Follow-up - Acme`.

    <Frame>
      <img src="https://mintcdn.com/cassidy/6N36C_l1gBEt99ZC/images/workflows/rename-workflow-run-action.png?fit=max&auto=format&n=6N36C_l1gBEt99ZC&q=85&s=c0e034bf5d64581d6355ddc61b3b6bdf" alt="Extract Information action added to the Workflow" width="1920" height="864" data-path="images/workflows/rename-workflow-run-action.png" />
    </Frame>
  </Step>

  <Step title="Run the Workflow">
    When the action runs, Cassidy updates the name shown for that run. Open the Workflow's run history to find the run by its new name.
  </Step>
</Steps>

## Things to know

* Run names can contain up to 1,000 characters. Cassidy shortens longer names automatically.
* If **Run Name** is empty after the variables are filled in, Cassidy removes the run's custom name.
* If the Workflow renames the same run more than once, the most recent completed rename becomes the displayed name.

<Warning>
  Avoid placing **Rename Workflow Run** inside a [Loop](/reference/actions/loop)
  when you need a predictable final name. Loop items can run at the same time,
  so any item may finish last and determine the run name. Place the action after
  the Loop instead.
</Warning>

## Related

* [Build and configure Workflows](/workflows/building)
* [Run and test Workflows](/workflows/running-and-testing)
* [Loop](/reference/actions/loop)
