How to Set Up Vercel Comments Notifications to Slack
Here’s how to set up notifications for Vercel Comments to Slack.
The setup can be completed in just 2 steps.
First, invite the Vercel app to the Slack channel where you want to receive comment notifications by running this command:
/invite @Vercel
Next, run the following command in the channel where the Vercel app has joined to subscribe to comments for a specific project:
/vercel subscribe [TEAM_SLUG]/[PROJECT_NAME]
Replace [TEAM_SLUG]
and [PROJECT_NAME]
with your own values:
[TEAM_SLUG]
: Your Vercel team slug, which you can find in your Vercel dashboard URL (vercel.com/[TEAM_SLUG]/...
). For individual accounts, this is your username.[PROJECT_NAME]
: The name of the Vercel project you want to receive notifications for.For example, to subscribe to a project called website
under the team acme
:
/vercel subscribe acme/website
After executing the command, you’ll receive a confirmation message from the Vercel bot. That’s it - setup is complete!
If you no longer need the notifications, simply run the unsubscribe
command in the same Slack channel:
/vercel unsubscribe [TEAM_SLUG]/[PROJECT_NAME]
In this article, I’ve introduced how to set up Vercel Comments notifications to Slack.
This integration feature, which can be configured with just a single command, is a powerful tool that smooths team communication and prevents missing important feedback.
That’s all from the Gemba on setting up Vercel Comments notifications to Slack.