Block 1 - Schedule Trigger
- Type / Role
- n8n-nodes-base.scheduleTrigger - scheduleTrigger
- Config choices
- Version 1.2
This workflow is provided as-is. Please review and test before using in production.
Still reminding people about their tasks manually every morning? Let’s be honest — who wants to start the day chasing teammates about what they need to do? What if Slack could do it for you — autom...
n8n-nodes-base.scheduletrigger, n8n-nodes-base.airtable, n8n-nodes-base.slack, n8n-nodes-base.stickynote
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Baptiste Fort.
Original n8n.io sourceLet’s be honest — who wants to start the day chasing teammates about what they need to do?
What if Slack could do it for you — automatically, at 9 a.m. every day — without missing anything, and without you lifting a finger?
In this tutorial, you’ll build a simple automation with n8n that checks Airtable for active tasks and sends reminders in Slack, daily.
Here’s the flow you’ll build:
Schedule Trigger → Search Records (Airtable) → Send Message (Slack)
Create a new base called Tasks
Add a table (for example: Projects, To-Do, or anything relevant)
Add the following fields:
| Field | Type | Example |
|---|---|---|
| Title | Text | Finalize quote for Client A |
| Assignee | Text | Baptiste Fort |
| [email protected] | ||
| Status | Single select | In Progress / Done |
| Due Date | Date (dd/mm/yyyy) | 05/07/2025 |
Add a few sample tasks with the status In Progress so you can test your workflow later.
In n8n, add a Schedule Trigger node
Set it to run every day at 9:00 a.m.:
Trigger interval: Days
Days Between Triggers: 1
Trigger at hour: 9
Trigger at minute: 0
This is the node that kicks off the workflow every morning.
This step is all about connecting n8n to your Airtable base and pulling the tasks that are still marked as "In Progress".
1. Add the Airtable node
In your n8n workflow, add a node called:
Airtable → Search Records
You can find it by typing "airtable" in the node search.
2. Create your Airtable Personal Access Token
If you haven’t already created your Airtable token, here’s how:
🔗 Go to: https://airtable.com/create/tokens
Then:
Name your token something like TACHES
Under Scopes, check:
✅ data.records:read
Under Access, select only the base you want to use (e.g. “Tâches”)
Click “Save token”
Copy the personal token
3. Set up the Airtable credentials in n8n
In the Airtable node:
Click on the Credentials field
Select: Airtable Personal Access Token
Click Create New
Paste your token
Give it a name like: My Airtable Token
Click Save
4. Configure the node
Now fill in the parameters:
Base: Tâches
Table: Produits (or Tâches, depending on what you called it)
Operation: Search
Filter By Formula:
{Statut} = "En cours"
Return All: ✅ Yes (make sure it’s enabled)
Output Format: Simple
5. Test the node
Click “Execute Node”.
You should now see all tasks with Statut = "En cours" show up in the output (on the right-hand side of your screen), just like in your screenshot.
Now that we’ve fetched all the active tasks from Airtable, let’s send them to Slack — one by one — using a loop.
Drag a new node into your n8n workflow and select:
Slack → Message
Name it something like Send Slack Message
You can find it quickly by typing "Slack" into the node search bar.
If you haven't already connected your Slack credentials:
Go to n8n → Credentials
Select Slack API
Click Create new
Paste your Slack Bot Token (from your Slack App OAuth settings)
Give it a clear name like Slack Bot n8n
Choose the workspace and save
Then, in the Slack node, choose this credential from the dropdown.
Set these parameters:
Operation: Send
Send Message To: Channel
Channel: your Slack channel (e.g. #tous-n8n)
Message Type: Simple Text Message
Message template Paste the following inside the Message Text field:
Paste the following inside the Message Text field: New task for {{ $json.name }}: {{ $json["Titre"] }} 👉 Deadline: {{ $json["Date limite"] }}
Example output:
New task for Jeremy: Relancer fournisseur X 👉 Deadline: 2025-07-04
Click Execute Node to verify the message is correctly sent in Slack.
If the formatting works, you’re ready to run it on schedule 🚀
Want to scale your workflows? Visit 0vni – Agence automatisation.
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | Daily task reminder system: Airtable to Slack automated notifications |
|---|---|
| Complexity | beginner |
| Nodes | 4 |
| Categories | Project Management |
| Author | Baptiste Fort |
| Published | 04 Jul 2025 |
Use the JSON export at /data/workflows/5672/5672.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
Still reminding people about their tasks manually every morning? Let’s be honest — who wants to start the day chasing teammates about what they need to do? What if Slack could do it for you — autom...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Project Management use case.