# Depot CI now supports case expression in GitHub Actions workflow syntax (https://depot.dev/changelog/2026-04-10-case-expression-support)

> Published 2026-04-10

Depot CI now supports the `case` expression in GitHub workflow syntax, matching the latest GitHub Actions expression functions. This allows you to map values to different outputs without chaining multiple `if` conditions:

For example:

```yaml
steps:
  - run: echo ${{ case(github.event_name == 'push', 'Pushed', github.event_name == 'pull_request', 'PR', 'Unknown') }}
```

## For AI Agents

The full site index is at [llms.txt](https://depot.dev/llms.txt). Append `.md` to any documentation, blog, changelog, or customer URL to fetch its markdown source directly.