Skip to main content

Tag stale ClickUp tasks and escalate overdue items with assignee comments

Workflow preview

Workflow preview
100%
Tag stale ClickUp tasks and escalate overdue items with assignee comments preview
Open on n8n.io

1. Workflow Overview

Quick overview This workflow runs daily on a schedule and checks ClickUp tasks in one or more lists for inactivity based on the task’s date updated field, automatically applying “stale” tags and es...

Best for

  • Project Management automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.stickynote, n8n-nodes-base.if, n8n-nodes-base.clickup, n8n-nodes-base.merge, n8n-nodes-base.filter, n8n-nodes-base.switch, n8n-nodes-base.removeduplicates, n8n-nodes-base.set

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Kris Hoang.

Original n8n.io source

1.1 Workflow description

Title
Tag stale ClickUp tasks and escalate overdue items with assignee comments
Workflow name
Tag stale ClickUp tasks and escalate overdue items with assignee comments

Quick overview

This workflow runs daily on a schedule and checks ClickUp tasks in one or more lists for inactivity based on the task’s date_updated field, automatically applying “stale” tags and escalating long-idle tasks by tagging them and posting an assignee comment.

How it works

  1. Runs every day at the configured hour using the schedule trigger.
  2. Loads monitoring settings (statuses, tags, stale thresholds, and tag names) and fetches matching tasks from the selected ClickUp list(s), then merges and deduplicates them.
  3. Skips tasks that already have the second-level stale tag (for example, stale:14).
  4. For tasks without the first-level stale tag, checks the last updated timestamp and adds either the first-level stale tag (for example, stale:7) or the second-level stale tag if they already exceed the higher threshold.
  5. For tasks that already have the first-level stale tag, checks whether enough time has passed since that tag was applied and, if so, removes the first-level tag and adds the second-level stale tag.
  6. When a task is escalated to the second-level stale tag, posts a warning comment on the ClickUp task and assigns the comment to the task assignee (or the creator if no assignee exists).

Setup

  1. Add a ClickUp API credential (OAuth or API token) and select it on all ClickUp nodes.
  2. In the ClickUp task search node(s), choose the list(s) you want to monitor and enable/configure the second list node if you want to pull tasks from multiple lists.
  3. Update the monitoring settings (monitoredStatuses, monitoredTags, daysUntilFirstStaleTag, daysUntilSecondStaleTag, and the stale tag names) to match your ClickUp workspace conventions.
  4. Adjust the schedule trigger time and, if needed, set the workflow timezone in n8n settings so the run time matches your local time.

Requirements

  • A ClickUp account with API access
  • ClickUp credential configured in n8n
  • At least one ClickUp list to monitor

Customization

  • Change thresholds — Edit daysUntilFirstStaleTag and daysUntilSecondStaleTag in SetContext to any number of days
  • Change tag names — Update firstStaleTagName / secondStaleTagName to match your ClickUp tag naming convention
  • Monitor different statuses — Edit monitoredStatuses and monitoredTags in SetContext (e.g. add review, blocked)
  • Add more lists — Duplicate GetTaskFromList1, update the List ID, enable the node, and connect its output to a new input port on AppendListTasks
  • Change schedule — Open TriggerRegularly and switch from daily to weekdays-only or any custom cron interval
  • Disable subtasks — Open each GetTaskFromList node and set subtasks to false in the Filters section

1.2 Logical Blocks

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.

2. Block-by-Block Analysis

Block 1 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 2 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 3 - Sticky Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 4 - Sticky Note3

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 5 - Sticky Note4

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 6 - Sticky Note5

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 7 - Sticky Note6

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 8 - If Date Not Updated for 2nd Stale

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.3

Block 9 - Tag Task as 2nd Stale

Type / Role
n8n-nodes-base.clickUp - clickUp
Config choices
Version 1

Block 10 - Add First Stale Tag

Type / Role
n8n-nodes-base.clickUp - clickUp
Config choices
Version 1

Block 11 - Check First Stale Tag Presence

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.3

Block 12 - Remove First Stale Tag

Type / Role
n8n-nodes-base.clickUp - clickUp
Config choices
Version 1

Block 13 - Comment on 2nd Stale Task

Type / Role
n8n-nodes-base.clickUp - clickUp
Config choices
Version 1

Block 14 - Merge Task Lists

Type / Role
n8n-nodes-base.merge - merge
Config choices
Version 3.2

Block 15 - Filter Already 2nd Stale Tasks

Type / Role
n8n-nodes-base.filter - filter
Config choices
Version 2.3

Block 16 - Route by Stale Type

Type / Role
n8n-nodes-base.switch - switch
Config choices
Version 3.4

Block 17 - Fetch Tasks from List 1

Type / Role
n8n-nodes-base.clickUp - clickUp
Config choices
Version 1

Block 18 - Fetch Tasks from List 2

Type / Role
n8n-nodes-base.clickUp - clickUp
Config choices
Version 1

Block 19 - Deduplicate by Task ID

Type / Role
n8n-nodes-base.removeDuplicates - removeDuplicates
Config choices
Version 1.1

Block 20 - Configure Task Monitoring

Type / Role
n8n-nodes-base.set - set
Config choices
Version 3.4

Block 21 - Scheduled 7 AM Trigger

Type / Role
n8n-nodes-base.scheduleTrigger - scheduleTrigger
Config choices
Version 1.3

Block 22 - No Operation Node

Type / Role
n8n-nodes-base.noOp - noOp
Config choices
Version 1

3. Summary Table

Workflow Tag stale ClickUp tasks and escalate overdue items with assignee comments
Complexity advanced
Nodes 22
Categories Project Management
Author Kris Hoang
Published 20 Jun 2026

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/16522/16522.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

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.

Frequently asked questions

What does Tag stale ClickUp tasks and escalate overdue items with assignee comments do?

Quick overview This workflow runs daily on a schedule and checks ClickUp tasks in one or more lists for inactivity based on the task’s date updated field, automatically applying “stale” tags and es...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

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.