Skip to content

Commit

Permalink
Adds an exclamation mark before the meeting notes trigger to avoid sp…
Browse files Browse the repository at this point in the history
…amming (#123)
  • Loading branch information
misspee007 authored Dec 13, 2024
1 parent 21d87c7 commit 833c022
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ app.message(/outreachy/i, async ({ message, say, logger }) => {
// Sends CHAOSS Meeting Notes Link
const meetingNotesLink = process.env.MEETING_NOTES_LINK;

app.message(/(meeting|meeting notes)/i, async ({ message, say }) => {
app.message(/(!meeting|!notes)/i, async ({ message, say }) => {
if (!meetingNotesLink) {
await say("The meeting notes link is currently unavailable.");
} else {
Expand Down

0 comments on commit 833c022

Please sign in to comment.