From 530a3f46a447a25cb25c52d24bab60d763ec42fa Mon Sep 17 00:00:00 2001
From: Ryan Laurie <30528226+iethree@users.noreply.github.com>
Date: Wed, 3 May 2023 08:58:47 -0600
Subject: [PATCH] properly quote slack token (#30505)

---
 .github/workflows/rerun-workflows.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/rerun-workflows.yml b/.github/workflows/rerun-workflows.yml
index 720a922b33d..d892ebd431f 100644
--- a/.github/workflows/rerun-workflows.yml
+++ b/.github/workflows/rerun-workflows.yml
@@ -43,7 +43,7 @@ jobs:
             } else {
               // notify slack of repeated failure
               const WebClient = require('@slack/web-api');
-              const slack = new WebClient(${{ secrets.SLACK_BOT_TOKEN }});
+              const slack = new WebClient('${{ secrets.SLACK_BOT_TOKEN }}');
 
               await slack.chat.postMessage({
                 channel: 'engineering-ci',
-- 
GitLab