⚡ Only 300 spots remaining • Closes in 2d 14h 32m

Back to Workflow Library
Productivity

Automatic Trello Board Cleanup

Maintain a clutter-free workspace. This workflow runs every Sunday night. It scans your designated "Done" list on Trello, checks the last activity date for each card, and automatically archives any card that has been inactive for more than two weeks, keeping your historical data while clearing the view for the new week.

#Trello
#Task Management
#Maintenance
#Productivity
#Organization

Automation Logic

n8n JSON Blueprint

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.

QUICK DEPLOY

  • 1
    Download the .json file
  • 2
    Open n8n & click "Import"
  • 3
    Configure your API keys

PRO TIP

Always test your workflow in a development environment before pushing to production.

JSON BLUEPRINT

n8n-workflow.json
{
  "nodes": [
    {
      "parameters": {
        "dayOfWeek": [0],
        "hour": 23
      },
      "name": "Sunday Night",
      "type": "n8n-nodes-base.cron",
      "typeVersion": 1,
      "position": [250, 300]
    },
    {
      "parameters": {
        "operation": "getAll",
        "listId": "YOUR_DONE_LIST_ID"
      },
      "name": "Get Done Cards",
      "type": "n8n-nodes-base.trello",
      "typeVersion": 1,
      "position": [450, 300]
    },
    {
      "parameters": {
        "conditions": {
          "dateTime": [
            {
              "value1": "={{$json[\"dateLastActivity\"]}}",
              "operation": "olderThan",
              "value2": 14,
              "unit": "days"
            }
          ]
        }
      },
      "name": "Older than 14 days?",
      "type": "n8n-nodes-base.if",
      "typeVersion": 1,
      "position": [650, 300]
    },
    {
      "parameters": {
        "operation": "update",
        "cardId": "={{$json[\"id\"]}}",
        "additionalFields": {
          "closed": true
        }
      },
      "name": "Archive Card",
      "type": "n8n-nodes-base.trello",
      "typeVersion": 1,
      "position": [850, 250]
    }
  ],
  "connections": {
    "Sunday Night": {
      "main": [[{"node": "Get Done Cards", "type": "main", "index": 0}]]
    },
    "Get Done Cards": {
      "main": [[{"node": "Older than 14 days?", "type": "main", "index": 0}]]
    },
    "Older than 14 days?": {
      "main": [[{"node": "Archive Card", "type": "main", "index": 0}]]
    }
  }
}

To use this, copy the JSON above and paste it directly onto your n8n canvas.

IMPLEMENTATION GUIDE

Required Nodes

  • Trello Node
  • Task Management Node
  • Maintenance Node
  • Productivity Node
  • Organization Node
  • Cron / Webhook Trigger

Core Benefits

  • 100% Automated Execution
  • Reduces Manual Data Entry
  • Infinite Scalability

Need Help Building Your Private Cloud?

Join the elite marketers who have offloaded their entire backend to n8n. Get direct support and custom builds in our private forum.

user