Trigger: Board Column Changed
The generic Boards trigger: fire a workflow whenever any column value on an item changes.
The Board Column Changed trigger fires a workflow whenever any column value on a Board item changes — a status, a date, a number, free text, anything. It's the generic Boards trigger: reach for it when the change you care about doesn't have its own dedicated trigger (assignment, status, group).
When it fires
As soon as a column value is updated on an item in any of your Boards.
Trigger configuration
- Board: restrict to a specific board. Empty = any board.
- Column: restrict to a specific column. Empty = any column on that board.
Available variables
$record.object_type,$record.object_id,$record.workspace_id$trigger.column_id,$trigger.column_old,$trigger.column_new
Example workflow
"Alert on priority change": Board Column Changed trigger (Board = "Tech Support", Column = "Priority") → Condition: $trigger.column_new = "Urgent" → "Notify team" action in Team: "Item #{{$record.object_id}} was just set to Urgent priority."
Tips
- It's the most flexible Boards trigger: if Omnifox later ships a dedicated trigger for your column type (like it did for Status or Person), migrate your logic there — dedicated triggers usually expose cleaner variables.
- Pair it with a condition on
$trigger.column_newto react to one specific value instead of every change.
Troubleshooting
If it never fires, make sure you're targeting the correct column ID (not the display name, which can change) and that the board picked in the filter matches the one where the change actually happened.
Related articles
-
Build your first workflow
Omnifox workflows automate your operation: a trigger starts the automation and action nodes do the work. Build a welcome message in minutes.
-
Workflow triggers catalog
Learn which events can start a workflow automatically in Omnifox.
-
Action nodes available in workflows
Discover the actions a workflow can run automatically.
-
Conditions and branching (if/then) in a workflow
Make your flows take decisions and follow different paths based on each contact data.
-
Ready-to-use workflow templates
Start your automations in minutes from prebuilt flows you can customize.