From 4ae1657e3dfb70740fb43f61a4cf2bddbf8d9504 Mon Sep 17 00:00:00 2001 From: Tim DE WINTER Date: Wed, 10 Jul 2024 12:18:08 +0200 Subject: [PATCH] fix(ci): e2e report notify channel should be NOTIFY_CHANNEL instead of GUILD Changelog: fixed --- .gitlab/e2e_report_notify.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab/e2e_report_notify.rb b/.gitlab/e2e_report_notify.rb index 8daca9a876..f81a02dac3 100644 --- a/.gitlab/e2e_report_notify.rb +++ b/.gitlab/e2e_report_notify.rb @@ -8,11 +8,11 @@ CI_PAGES_PREFIX = ENV['PAGES_PREFIX'] CI_PAGES_URL = ENV['CI_PAGES_URL'] CI_PROJECT_ID = ENV['CI_PROJECT_ID'] -GUILD_WEBHOOK_URL = ENV['GUILD_WEBHOOK_URL'] +WEBHOOK_URL = ENV['NOTIFY_CHANNEL'] # Function to send a message to kChat def send_to_kchat(msg) - uri = URI(GUILD_WEBHOOK_URL) + uri = URI(WEBHOOK_URL) req = Net::HTTP::Post.new(uri, 'Content-Type' => 'application/json') message = <<-MESSAGE