From b5301684f45ac64598e83f27d2ebeb6e7c980288 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sat, 8 Nov 2025 20:12:06 +0100 Subject: [PATCH] feat: add Mattermost webhook URL to n8n environment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added MATTERMOST_WEBHOOK_URL environment variable to n8n: - Available as environment variable in workflow expressions - Can be used in HTTP Request nodes to send notifications - Enables easy integration with Mattermost from any workflow Usage in n8n workflows: - Use {{ $env.MATTERMOST_WEBHOOK_URL }} in expressions - Send POST requests with JSON payload to notify Mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- n8n/compose.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/n8n/compose.yaml b/n8n/compose.yaml index bc4aa52..75a88ae 100644 --- a/n8n/compose.yaml +++ b/n8n/compose.yaml @@ -30,6 +30,8 @@ services: N8N_SMTP_PASS: ${EMAIL_SMTP_PASSWORD} N8N_SMTP_SENDER: ${EMAIL_FROM} N8N_SMTP_SSL: "true" + # Mattermost webhook for notifications + MATTERMOST_WEBHOOK_URL: ${MATTERMOST_WEBHOOK_URL:-} depends_on: - postgres networks: