⚡ Only 300 spots remaining • Closes in 2d 14h 32m
Keep the pipeline moving. This workflow polls your GitLab instance for open Merge Requests. If any MR has been idle (no activity or no approval) for over 24 hours, it sends a friendly reminder to the assigned reviewers on Slack.
This workflow is pre-configured and ready for deployment. Simply import the JSON template into your n8n instance and configure your credentials.
This is an exclusive blueprint. Copy the JSON below to use it.
PRO TIP
Always test your workflow in a development environment before pushing to production.
{
"nodes": [
{
"parameters": {
"hour": 9
},
"name": "Daily Daily Check",
"type": "n8n-nodes-base.cron",
"typeVersion": 1,
"position": [
250,
300
]
},
{
"parameters": {
"resource": "mergeRequest",
"operation": "getAll",
"projectId": "YOUR_PROJECT_ID",
"filters": {
"status": "opened"
}
},
"name": "Get Open MRs",
"type": "n8n-nodes-base.gitlab",
"typeVersion": 1,
"position": [
450,
300
]
},
{
"parameters": {
"channel": "dev-team",
"text": "=\u23F3 Reminder: Merge Request \"{{$node[\"Get Open MRs\"].json[\"title\"]}}\" is still open and waiting for review!\n{{$node[\"Get Open MRs\"].json[\"web_url\"]}}",
"otherOptions": {}
},
"name": "Slack Reminder",
"type": "n8n-nodes-base.slack",
"typeVersion": 1,
"position": [
650,
300
]
}
],
"connections": {
"Daily Daily Check": {
"main": [
[
{
"node": "Get Open MRs",
"type": "main",
"index": 0
}
]
]
},
"Get Open MRs": {
"main": [
[
{
"node": "Slack Reminder",
"type": "main",
"index": 0
}
]
]
}
}
}To use this, copy the JSON above and paste it directly onto your n8n canvas.
Join the elite marketers who have offloaded their entire backend to n8n. Get direct support and custom builds in our private forum.