AutomationFlowsData & Sheets › Jane Riveros — Flujo 07 · Publica Aunque No Tengas Tiempo

Jane Riveros — Flujo 07 · Publica Aunque No Tengas Tiempo

Jane Riveros — Flujo 07 · Publica aunque no tengas tiempo. Uses googleSheets, httpRequest. Scheduled trigger; 6 nodes.

Cron / scheduled trigger★★★★☆ complexity6 nodesGoogle SheetsHTTP Request
Data & Sheets Trigger: Cron / scheduled Nodes: 6 Complexity: ★★★★☆ Added:

This workflow follows the Google Sheets → HTTP Request recipe pattern — see all workflows that pair these two integrations.

The workflow JSON

Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →

Download .json
{
  "name": "Jane Riveros \u2014 Flujo 07 \u00b7 Publica aunque no tengas tiempo",
  "nodes": [
    {
      "id": "9cd82799-e520-419d-8ad3-eb47bdb2cccd",
      "name": "C\u00d3MO CONFIGURAR",
      "type": "n8n-nodes-base.stickyNote",
      "typeVersion": 1,
      "position": [
        448,
        64
      ],
      "parameters": {
        "content": "## Flujo 07 \u00b7 Publica aunque no tengas tiempo\n**Qu\u00e9 hace:** escribes tus posts en una planilla cuando T\u00da puedes (domingo en la noche, un rato libre) y el flujo los publica solo, cada d\u00eda, a la hora programada. Presencia constante sin estar presente.\n\n**Configuraci\u00f3n (\u224830 min):**\n1. **Planilla de posts** \u2014 crea una Google Sheet con columnas: fecha (yyyy-MM-dd), texto, canal, estado. Marca \"listo\" cuando el post est\u00e9 aprobado.\n2. **Publicar** \u2014 reemplaza TU_PAGE_ID y TU_TOKEN_DE_PAGINA con los de tu p\u00e1gina (Meta for Developers \u2192 Graph API). Para Instagram usa el endpoint /media + /media_publish.\n3. **Registro** \u2014 elige una hoja \"publicados\" para el historial.\n4. Activa el workflow.\n\n**Te devuelve:** semanas de presencia constante con 1 hora de trabajo.\n\n\u2014 Jane Riveros \u00b7 janeriveros.com",
        "width": 460,
        "height": 480
      }
    },
    {
      "id": "cea55053-1927-401b-bcef-1d28579fc182",
      "name": "Cada d\u00eda 9:00",
      "type": "n8n-nodes-base.scheduleTrigger",
      "typeVersion": 1.3,
      "position": [
        0,
        0
      ],
      "parameters": {
        "rule": {
          "interval": [
            {
              "field": "days",
              "triggerAtHour": 9
            }
          ]
        }
      }
    },
    {
      "id": "bcc9de0f-4ef1-44ca-a724-6cc0caa9b8d1",
      "name": "Leer planilla de posts",
      "type": "n8n-nodes-base.googleSheets",
      "typeVersion": 4.5,
      "position": [
        224,
        0
      ],
      "parameters": {
        "operation": "read",
        "documentId": {
          "__rl": true,
          "mode": "list",
          "value": ""
        },
        "sheetName": {
          "__rl": true,
          "mode": "list",
          "value": ""
        },
        "options": {}
      }
    },
    {
      "id": "ed43bdaa-295d-41d6-a8e0-007e7cb783b8",
      "name": "Solo posts de hoy listos",
      "type": "n8n-nodes-base.filter",
      "typeVersion": 2.2,
      "position": [
        448,
        0
      ],
      "parameters": {
        "conditions": {
          "options": {
            "caseSensitive": false,
            "leftValue": "",
            "typeValidation": "loose"
          },
          "conditions": [
            {
              "leftValue": "={{ $json.fecha }}",
              "operator": {
                "type": "string",
                "operation": "equals"
              },
              "rightValue": "={{ $now.toFormat(\"yyyy-MM-dd\") }}"
            },
            {
              "leftValue": "={{ $json.estado }}",
              "operator": {
                "type": "string",
                "operation": "equals"
              },
              "rightValue": "listo"
            }
          ],
          "combinator": "and"
        }
      }
    },
    {
      "id": "ac153da6-4c17-4b48-bf60-cbf8c8470a4b",
      "name": "Publicar (Meta Graph API)",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.3,
      "position": [
        672,
        0
      ],
      "parameters": {
        "method": "POST",
        "url": "https://graph.facebook.com/v21.0/TU_PAGE_ID/feed",
        "sendBody": true,
        "bodyParameters": {
          "parameters": [
            {
              "name": "message",
              "value": "={{ $json.texto }}"
            },
            {
              "name": "access_token",
              "value": "TU_TOKEN_DE_PAGINA"
            }
          ]
        }
      }
    },
    {
      "id": "0a52fad3-dbcf-4e6b-896c-882c5653ded2",
      "name": "Registrar qu\u00e9 sali\u00f3",
      "type": "n8n-nodes-base.googleSheets",
      "typeVersion": 4.5,
      "position": [
        896,
        0
      ],
      "parameters": {
        "operation": "append",
        "documentId": {
          "__rl": true,
          "mode": "list",
          "value": ""
        },
        "sheetName": {
          "__rl": true,
          "mode": "list",
          "value": ""
        },
        "columns": {
          "mappingMode": "autoMapInputData",
          "value": {}
        },
        "options": {}
      }
    }
  ],
  "connections": {
    "Cada d\u00eda 9:00": {
      "main": [
        [
          {
            "node": "Leer planilla de posts",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Leer planilla de posts": {
      "main": [
        [
          {
            "node": "Solo posts de hoy listos",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Solo posts de hoy listos": {
      "main": [
        [
          {
            "node": "Publicar (Meta Graph API)",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Publicar (Meta Graph API)": {
      "main": [
        [
          {
            "node": "Registrar qu\u00e9 sali\u00f3",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "settings": {
    "executionOrder": "v1",
    "availableInMCP": true
  }
}
Pro

For the full experience including quality scoring and batch install features for each workflow upgrade to Pro

About this workflow

Jane Riveros — Flujo 07 · Publica aunque no tengas tiempo. Uses googleSheets, httpRequest. Scheduled trigger; 6 nodes.

Source: https://github.com/testaiprojects1-sketch/janeriveros-website/blob/31153deac4595104ca898f2193e28e669be291ff/public/n8nflujos/jane-riveros-flujo-07.json — original creator credit. Request a take-down →

More Data & Sheets workflows → · Browse all categories →

Related workflows

Workflows that share integrations, category, or trigger type with this one. All free to copy and import.

Data & Sheets

Complaint Triage Orchestrator (S2.3). Uses httpRequest, googleSheets. Scheduled trigger; 65 nodes.

HTTP Request, Google Sheets
Data & Sheets

This workflow automates video distribution to 9 social platforms simultaneously using Blotato's API. It includes both a scheduled publisher (checks Google Sheets for videos marked "Ready") and a subwo

Google Sheets, HTTP Request, Form Trigger +2
Data & Sheets

YogiAI. Uses googleSheets, googleSheetsTool, httpRequest, stopAndError. Scheduled trigger; 61 nodes.

Google Sheets, Google Sheets Tool, HTTP Request +1
Data & Sheets

This workflow monitors Google Calendar for events indicating that a customer will visit the company today or the next day, retrieves the required details, and sends reminder notifications to the relev

Google Calendar, Google Sheets, HTTP Request +1
Data & Sheets

ofn hook v0.24.0 beta. Uses start, httpRequest, functionItem, itemLists. Scheduled trigger; 42 nodes.

Start, HTTP Request, Function Item +3