From ca87b07a9bf13d93dc926a3394a10cf50028b25e Mon Sep 17 00:00:00 2001 From: Andrea Date: Mon, 1 Jul 2024 11:21:17 +0200 Subject: [PATCH] action.cjs: fix slack channel --- actions/renovate-sanity-check/action.cjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/renovate-sanity-check/action.cjs b/actions/renovate-sanity-check/action.cjs index 18a84322..3d707d8e 100644 --- a/actions/renovate-sanity-check/action.cjs +++ b/actions/renovate-sanity-check/action.cjs @@ -9,5 +9,5 @@ module.exports = async ({ github, context, inputs, actionPath, core, debug = fal debug }) - if (message.length > 0) { await sendSlackMessage({ debug, username: 'renovate-sanity-check', message, color: 'yellow', channel: '#security-action', token: inputs.slack_token }) } + if (message.length > 0) { await sendSlackMessage({ debug, username: 'renovate-sanity-check', message, color: 'yellow', channel: '#secops-hotspots', token: inputs.slack_token }) } }