Zurück zum Blog
Guide

Slack Workflow Builder Examples: 12 Workflows to Copy, With Triggers and Steps

Twelve Slack Workflow Builder examples with the exact trigger and steps for each: daily standups, channel welcomes, time-off approvals, help desk requests, emoji escalations, keyword routing, incidents, list updates and webhooks from other tools. Plus where Workflow Builder lives, what it costs and how branches work.

Slack Green Team
September 23, 2026
September 23, 2026
5 min read
Share:
slack tips
automation
workflow builder

Slack Workflow Builder turns a repeated task into a trigger plus a few steps. The most useful examples are a scheduled daily standup, a welcome message when someone joins a channel, a time-off request with manager approval, a help desk form that posts to a triage channel, an emoji reaction that escalates a message, and a webhook that posts alerts from another tool. Each one is below with its trigger and steps, ready to rebuild. To open Workflow Builder on desktop, click Agents & tools in the sidebar (older layouts say Tools or Automations), then Workflows, New, Build Workflow. It is included on paid plans, and by default any member can build a workflow.

What a workflow cannot do is keep you present. Your dot goes grey 10 minutes after your last input in the Slack window, and no workflow step changes that. Slack Green keeps your status active during the working hours you set, from the cloud.

Slack Workflow Builder examples: on a schedule, joins a channel, emoji reaction, from a link, webhook, branches

Workflow Builder triggers

Every workflow starts with one trigger. Slack's create a workflow guide lists these:

Workflow Builder triggers and what to use them for
TriggerStarts whenGood for
From a linkSomeone clicks Start Workflow in SlackForms: requests, kudos, bug reports
On a scheduleAt the date, time and repeat you setStandups, agendas, weekly check-ins
When a person joins a channelAnyone joins the channel you pickWelcome messages, channel rules
When an emoji reaction is usedSomeone uses a chosen emoji in a chosen channelEscalations, claiming a task
When a message is postedA message contains keywords you setRouting "outage" or "refund" posts
When a list item is updatedA list item, or one field of it, changesTelling a requester their item is done
From a webhookAnother service sends a POST to your URLAlerts from monitoring, CI, forms

A link trigger only works inside Slack. Pin the link in the channel, bookmark it, or put it in a canvas.

After the trigger come steps: Slack steps (send a message, collect a form, create a channel, add people), connector steps that act in other services such as Google Sheets or Zoom, and custom steps your developers build. Buttons pause the workflow until someone clicks. Variables carry answers from earlier steps into later ones.

12 Slack Workflow Builder examples

1. Daily standup

  • Trigger: On a schedule, every weekday at 9:30.
  • Steps: Send a message to #standup with a Share update button. The button opens a form with three questions: yesterday, today, blockers. A final step posts the answers to the channel with the person as a variable.
  • People answer in one place and the channel stays readable. For a plain repeating post without a form, a recurring scheduled message is lighter.

    2. Welcome message for a channel

  • Trigger: When a person joins #customer-support.
  • Steps: Send a message to the person who joined, with the channel's purpose, where the runbook lives, and who to ask.
  • This beats a pinned message nobody opens, because it arrives as a direct message at the moment it is useful.

    3. Time-off request with approval

    Example workflow: a time-off request with approval, from a link to a form, manager review, branch and reply

  • Trigger: From a link, pinned in #team.
  • Steps: A form for dates, type and a note. A message to the manager with a Review button that opens a second form with Approve or Deny. A branch on that answer sends the requester one of two replies, and the approved branch also posts to #team-calendar.
  • Slack ships a time-off template that starts close to this. Pair it with an out-of-office status on the days themselves.

    4. IT or help desk request

  • Trigger: From a link in #it-help.
  • Steps: A form for the category, urgency and details. A message to a private #it-triage channel with a Claim button. After the click, a message tells the requester who has it.
  • 5. Emoji escalation

  • Trigger: When the 🚨 reaction is used in #support.
  • Steps: Send a message to #on-call with a link to the original message and the person who reacted.
  • Anyone can escalate with one click, and the on-call channel gets a clean feed.

    6. Keyword routing

  • Trigger: When a message containing "refund" is posted in #sales.
  • Steps: Send a message to #finance with the message link.
  • Keep the keyword list short. A broad keyword fires on every casual mention.

    7. Incident channel

  • Trigger: From a link, or from an emoji reaction on an alert.
  • Steps: A form for a short title, severity and owner. Create a channel for the incident. Add the owner and responders. Send the details as the first message and ask people to pin it.
  • 8. Weekly meeting agenda

  • Trigger: On a schedule, Monday at 10:00.
  • Steps: Send a message asking for agenda items with an Add topic button and a form. Each answer posts to the meeting channel, so the agenda builds itself before the meeting.
  • 9. Feature requests into a spreadsheet

  • Trigger: From a link in #product-feedback.
  • Steps: A form for the request and the customer. A Google Sheets connector step adds a row. A message confirms it to the channel.
  • Connector steps need an account connected to the other service, and your admins may need to approve the connector first.

    10. Kudos board

  • Trigger: From a link in #kudos.
  • Steps: A form with a person picker and a message. Post it to #kudos, mentioning the person as a variable.
  • 11. Tell the requester when a list item is done

  • Trigger: When a list item is updated, on the Status field.
  • Steps: A branch on the new value. If it is Done, send a message to the person in the item's Requester field.
  • 12. Alerts from another tool through a webhook

  • Trigger: From a webhook, with text variables such as service, severity and description.
  • Steps: Send a message to #alerts that uses the three variables.

Slack generates the request URL when you publish. It starts with https://hooks.slack.com/triggers/. Test it with a POST whose JSON keys match your variables:

curl -X POST "https://hooks.slack.com/triggers/T000/000/xxxx" \
  -H "Content-Type: application/json" \
  -d '{"service": "api", "severity": "high", "description": "Error rate over 5%"}'

Three limits from Slack's webhook workflow article: up to 20 variables, no nested JSON, and one request per second. If a variable you defined is missing from the request, the workflow fails. Anyone with the URL can start the workflow, so keep it out of public repositories.

Conditional logic: branches

Nie wieder "abwesend" auf Slack erscheinen

Cloud-basiert. Keine Downloads. Funktioniert 24/7 auch wenn Ihr Laptop aus ist.

A branch sends the workflow down different paths depending on a value, such as a form answer or a list field. Use one where you would otherwise build two nearly identical workflows: approved or denied, hardware or software request, high or low severity. Add it from the step list in Workflow Builder; Slack's help center covers it under adding conditional branches.

Is Slack Workflow Builder free?

No. Slack's help center lists Workflow Builder as available on paid plans. On a paid plan, every member can build workflows and members and guests can use them by default. Admins can limit who builds, which connector steps are allowed, and who can create webhook workflows. If you cannot see the option, ask an owner or admin.

Workflow templates vs building from scratch

In Workflow Builder, New offers templates next to Build Workflow. A template fills in the trigger and steps and you edit the details before publishing. Start from a template when one is close, such as the time-off request, and build from scratch for anything with your own form fields or branches.

For a one-line automation, a workflow may be more than you need. /remind handles simple repeating nudges (examples here), and every other built-in command is in Slack slash commands.

FAQ

Nie wieder "abwesend" auf Slack erscheinen

Cloud-basiert. Keine Downloads. Funktioniert 24/7 auch wenn Ihr Laptop aus ist.

Where is Workflow Builder in Slack?

On desktop, click Agents & tools in the sidebar, then Workflows. If you do not see it, look for Tools, which may sit under More.

Can a workflow run on a schedule?

Yes. Choose On a schedule as the trigger and set the date, time and how often it repeats.

Can Workflow Builder use if/then logic?

Yes, through branches that route on a value from an earlier step.

Can people outside my company use my workflow?

In Slack Connect channels, if you allow connected external organizations in the workflow's settings.

Can a workflow set my Slack status or keep me active?

Status and presence are separate. Presence follows your input in Slack, and no workflow step makes you active. To set a status from code, see set Slack status with the API.

Always Active

Hör auf, die Maus zu Bewegen.

Hunderte Remote-Arbeiter sorgen sich nicht mehr um ihren Slack-Status. Einmal einrichten, für immer grün bleiben.

Related Articles

Guide

Slack Active on Multiple Devices: Which One Sets Your Status?

When you use Slack on a phone and a computer at once, one active device is enough to keep you green, and a manual away on any device sets you away on all of them. The rule, common cases, and how notifications pick a device.

Slack Green Team5 min read
Guide

Slack Huddles vs Zoom: Which to Use for Team Calls

Slack huddles are quick calls inside Slack: 1:1 on the free plan, up to 50 people on paid plans, no recording. Zoom is built for scheduled, recorded and large meetings, with a free plan of 100 people for 40 minutes. Limits, cost, recording and privacy side by side.

Slack Green Team5 min read
Guide

How to Work Two Remote Jobs at the Same Time

Working two remote jobs at once takes four things: contracts that allow it, fully separate devices and accounts, a calendar that protects both jobs, and a chat status that stays believable in both. The practical setup, and the risks.

Slack Green Team5 min read
    Slack Workflow Builder Examples: 12 to Copy