Workflow template

GitFlow

Best for: Release-train teams using develop + tagged production.

Staging tracks the develop branch and prod tracks tags matching v*. Classic GitFlow shape — pick this if your team cuts release branches and ships prod from tags.

Shape

Staging → branch develop
Prod    → tag v*

What it seeds

Picking this template creates the following environments and slots in your workspace:

EnvironmentSlotTriggerPattern
Stagingdevelopbranchdevelop
Prodprodtagv*

How updates flow

When something matches a slot's pattern (a push to that branch, a tag with that name, a deployment with that environment), the GitHub webhook fires and the slot card updates in place. Your CI then deploys based on that push and emits deployment_status events, which flow back to update the slot status from Deployingto whatever your workflow ends in. We don't deploy for you.

See Trigger patterns for the full reference, or The board for how to read what you see.

Try it

New workspace? Pick GitFlow from the picker on /new-workspace. Existing workspace? Go to Settings → Environmentsand use the "Reset to a starting shape" card.