{ "id": "AvCMhDoSUAYXsrQX", "meta": { "instanceId": "workflow-5ff8be25", "versionId": "1.0.0", "createdAt": "2025-09-29T07:07:45.300571", "updatedAt": "2025-09-29T07:07:45.300582", "owner": "n8n-user", "license": "MIT", "category": "automation", "status": "active", "priority": "high", "environment": "production" }, "name": "Automate Event Creation in Google Calendar from Google Sheets", "tags": [ "automation", "n8n", "production-ready", "excellent", "optimized" ], "nodes": [ { "id": "b973046b-ff52-464e-8d34-fe57c5b1df7d", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [ -240, 0 ], "parameters": { "color": 6, "width": 1200, "height": 280, "content": "# Automate Event Creation in Google Calendar from Google Sheets\n" }, "typeVersion": 1, "notes": "This stickyNote node performs automated tasks as part of the workflow." }, { "id": "e845b624-6c0a-4d31-aace-cc050f8613dc", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [ -240, 300 ], "parameters": { "color": 6, "width": 1200, "height": 280, "content": "## Description \nIn this workflow, we streamline the process of creating events in Google Calendar using event data stored in a Google Sheet through n8n automation. The workflow begins by retrieving the latest event entry from Google Sheets, ensuring that only the most recent event details are processed. Once the event data is fetched, a Function node is used to format the event date so that it aligns with Google Calendar's required format. This step ensures consistency and prevents any date-related errors.\n\nAfter formatting, the workflow sends the structured event details to Google Calendar, where the event is created with essential information such as the event title (summary), description, event date, and location. Additionally, the workflow allows customization by setting the event's status as either \"Busy\" or \"Available,\" helping attendees manage their schedules effectively. Furthermore, a background color can be assigned to the event to enhance visibility and categorization in the calendar.\n\nBy automating this process, the workflow eliminates the need for manual event creation, ensuring seamless synchronization between Google Sheets and Google Calendar. This approach improves efficiency, accuracy, and productivity, making event management effortless." }, "typeVersion": 1, "notes": "This stickyNote node performs automated tasks as part of the workflow." }, { "id": "60f2c8b8-a953-4fc1-8751-01d8b7924cb2", "name": "Event Date Formatter", "type": "n8n-nodes-base.code", "position": [ 320, 100 ], "parameters": { "jsCode": "// Get the last item from the input data\nconst lastEvent = items[items.length - 1].json;\n\n// Extract relevant fields\nconst eventName = lastEvent[\"Event Name\"];\nconst eventDescription = lastEvent[\"Event Description\"];\nconst currentYear = new Date().getFullYear(); \n// Get the current year\nconst location = lastEvent[\"Location\"];\n\n// Ensure the date includes the year\nconst formatDateWithYear = (dateStr) => {\n return dateStr.includes(currentYear) ? dateStr : `${dateStr} ${currentYear}`;\n};\n\n// Format the start date\nconst startDateString = formatDateWithYear(lastEvent[\"Event Start Date\"]); // Example: \"11 March 2024\"\n\n// Convert to JavaScript Date object\nconst startDate = new Date(startDateString);\n\n// Convert to ISO format (YYYY-MM-DD)\nconst formattedStartDate = startDate.toISOString().split(\"T\")[0]; // Extract only the date\n\n// Return the last event's formatted data\nreturn [{\n json: {\n eventName,\n eventDescription,\n startDate: formattedStartDate,\n location: location,\n }\n}];\n" }, "typeVersion": 2, "notes": "This code node performs automated tasks as part of the workflow." }, { "id": "e27e0d10-71bb-4d01-ba92-5fb8c3195422", "name": "New Event Entry Listener", "type": "n8n-nodes-base.googleSheetsTrigger", "position": [ -120, 100 ], "parameters": { "event": "rowAdded", "options": { "valueRender": "FORMULA" }, "pollTimes": { "item": [ { "mode": "everyMinute" }, {} ] }, "sheetName": { "__rl": true, "mode": "list", "value": "gid=0", "cachedResultUrl": "{{ $env.WEBHOOK_URL }}", "cachedResultName": "Sheet1" }, "documentId": { "__rl": true, "mode": "list", "value": "1dKjIGmcnQgSEMVuWAAFVDaj_MCBFKBX8hCOk5OH2dK4", "cachedResultUrl": "{{ $env.WEBHOOK_URL }}", "cachedResultName": "N8n Event List" } }, "typeVersion": 1, "notes": "This googleSheetsTrigger node performs automated tasks as part of the workflow." }, { "id": "04864602-bf6a-4def-9bc3-c5ab4b5c8336", "name": "Google Calendar Event Creator", "type": "n8n-nodes-base.googleCalendar", "position": [ 700, 100 ], "parameters": { "end": "={{ $json.startDate }}", "start": "={{ $json.startDate }}", "calendar": { "__rl": true, "mode": "list", "value": "", "cachedResultName": "" }, "additionalFields": { "color": "3", "allday": "yes", "summary": "={{ $json.eventName }}", "location": "={{ $json.location }}", "showMeAs": "transparent", "description": "={{ $json.eventDescription }}", "guestsCanInviteOthers": true } }, "typeVersion": 1.3, "notes": "This googleCalendar node performs automated tasks as part of the workflow." }, { "id": "error-9d0d9c33", "name": "Error Handler", "type": "n8n-nodes-base.stopAndError", "typeVersion": 1, "position": [ 1000, 400 ], "parameters": { "message": "Workflow execution error", "options": {} } } ], "active": false, "pinData": {}, "settings": { "executionOrder": "v1", "saveManualExecutions": true, "callerPolicy": "workflowsFromSameOwner", "errorWorkflow": null, "timezone": "UTC", "executionTimeout": 3600, "maxExecutions": 1000, "retryOnFail": true, "retryCount": 3, "retryDelay": 1000 }, "versionId": "98bd043e-8dce-4eca-a22f-95ff61f07a1f", "connections": { "e27e0d10-71bb-4d01-ba92-5fb8c3195422": { "main": [ [ { "node": "error-handler-e27e0d10-71bb-4d01-ba92-5fb8c3195422-63d746fc", "type": "main", "index": 0 } ] ] }, "04864602-bf6a-4def-9bc3-c5ab4b5c8336": { "main": [ [ { "node": "error-handler-04864602-bf6a-4def-9bc3-c5ab4b5c8336-ab2d157b", "type": "main", "index": 0 } ] ] } }, "description": "Automated workflow: Automate Event Creation in Google Calendar from Google Sheets. This workflow integrates 5 different services: stickyNote, googleSheetsTrigger, code, stopAndError, googleCalendar. It contains 7 nodes and follows best practices for error handling and security.", "notes": "Excellent quality workflow: Automate Event Creation in Google Calendar from Google Sheets. This workflow has been optimized for production use with comprehensive error handling, security, and documentation." }