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

# Min

> Return the smallest value from two or more numbers.

The **Min** action examines a repeatable list and returns its smallest number.

## Inputs

| Input       | Type            | Required | Description                     |
| ----------- | --------------- | -------- | ------------------------------- |
| **Numbers** | List of numbers | Yes      | At least two values to compare. |

## Outputs

| Output  | Type   | Description                   |
| ------- | ------ | ----------------------------- |
| **Min** | Number | The smallest supplied number. |

For example, `8`, `-3`, and `4.5` produce `-3`.

<Warning>
  Zero and empty repeat slots are currently ignored by this action. If zero
  needs to participate in the comparison, compare it explicitly with the
  returned value in a later step.
</Warning>
