Skip to content

Commit

Permalink
Added meeting notes (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
misspee007 authored Dec 12, 2024
1 parent 7c7c0d1 commit 21d87c7
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,19 @@ app.message(/outreachy/i, async ({ message, say, logger }) => {
outreachyPrompt.outreachyMessage(message, say, logger);
});


// Sends CHAOSS Meeting Notes Link
const meetingNotesLink = process.env.MEETING_NOTES_LINK;

app.message(/(meeting|meeting notes)/i, async ({ message, say }) => {
if (!meetingNotesLink) {
await say("The meeting notes link is currently unavailable.");
} else {
await say(`Here is the link to the meeting notes: <${meetingNotesLink}>`);
}
});


// *******************************DIRECT MESSAGE - ONE TIME ANNOUNCEMENT************/
/*
let usersStore = {};
Expand Down

0 comments on commit 21d87c7

Please sign in to comment.