Skip to content
Snippets Groups Projects
Unverified Commit 530a3f46 authored by Ryan Laurie's avatar Ryan Laurie Committed by GitHub
Browse files

properly quote slack token (#30505)

parent 128fcc7f
No related branches found
No related tags found
No related merge requests found
......@@ -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',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment