![]() |
VOOZH | about |
Last update
Last update 4 months ago
Categories
Share
This workflow converts raw ClickUp task updatesβreceived directly through a webhookβinto fully automated release documentation. It validates incoming payloads, fetches and cleans task details, enriches them with AI-generated metadata, produces structured release notes using GPT-4o, publishes them to Notion, notifies stakeholders on Slack, emails a formatted summary, and logs the release into Google Sheets.
The system handles malformed events gracefully by logging invalid payloads and continues only when a valid task_id is present. It extracts structured fields (title, description, links, priority, assignee), then augments them with AI-driven classifications such as risk level, change type, module, and impact score. GPT-4o generates polished release notes following a strict template. Finally, the workflow distributes the release across multiple channels while maintaining an auditable, centralized history.
π’ Webhook β Receive ClickUp Task Update
Captures incoming events from ClickUp via POST and forwards the raw body for parsing.
π§Ή Code in JavaScript β Extract task_id
Parses the raw webhook body and safely extracts task_id.
Invalid JSON β forwarded to error logging.
π Validate Incoming ClickUp Task Event
Checks if task_id exists.
Valid β continue workflow
Invalid β log error to Google Sheets
π Fetch Full Task Details from ClickUp
Retrieves full task metadata: title, description, status, priority, links, assignee details, and due date.
π§© Extract Clean Task Fields from ClickUp Data
Normalizes and structures the task fields into a clean, usable JSON object.
π§ Provide GPT-4o Model for Metadata Extraction
Loads the language model for metadata generation.
π Generate Release Metadata via AI
AI generates structured metadata including:
β’ risk_level
β’ change_type
β’ module
β’ impact_score
β’ requires_testing
π§Ή Parse AI Metadata JSON Output
Parses stringified JSON from the AI node into valid structured JSON.
Malformed metadata β returned as an error object.
π Merge Task Details with Metadata
Combines clean task fields with AI-generated metadata into a complete release-ready object.
π§ Provide GPT-4o Model for Release Notes
Supplies the language model needed to generate formal release notes.
βοΈ Generate Structured Release Notes via AI
Produces uniform release notes containing:
β’ Summary
β’ Improvements & Features
β’ Bug Fixes
β’ Impact Analysis
β’ Known Issues
π Extract Release Notes Title & Final Output
Extracts title from markdown and prepares final content for publishing.
π Create Release Notes Page in Notion
Saves the release notes as a new page in the Notion Release Notes database.
π¬ Post Release Announcement to Slack
Sends formatted release notes + Notion link to the specified Slack user/channel.
π§ Send Release Summary Email
Sends a structured HTML email with the release summary, full notes, and Notion link.
π Append Release Log Entry to Google Sheet
Writes a complete release log entry including:
β’ task ID
β’ title
β’ priority
β’ module
β’ risk level
β’ Notion URL
β’ Slack message URL
β’ release date
π Log Invalid ClickUp Events to Google Sheet
Stores any invalid or incomplete webhook payload for debugging and auditing.
β’ ClickUp API token
β’ Public webhook endpoint in n8n
β’ Azure OpenAI GPT-4o credentials
β’ Notion API integration
β’ Slack API token
β’ Google Sheets OAuth
β’ Gmail OAuth
β Converts ClickUp updates directly into finished release documentation
β AI-powered metadata ensures consistent classification
β Instant multi-channel dissemination: Slack + Email + Notion
β Automatic logging for audit, QA, and release governance
β Eliminates manual writing, formatting, and cross-platform updates