Water Plant Reminder Discord Bot

Every Monday at 9am EDT send a message to our team's Discord channel to remind us to water our plant.

Screenshot 2024-04-17 at 11.53.31.png

Runs every 14 days
Fork
1
2
3
4
5
6
7
8
import { discordWebhook } from "https://esm.town/v/stevekrouse/discordWebhook";
export default async function() {
discordWebhook({
url: Deno.env.get("engDiscord"), // TODO replace this with the #office channel
content: `<@&1081224342110736394> Water the plant!! 🌴`,
});
}

Daily Standup Bot

Every weekday at 9am EDT send a message to our team's #engineering Discord channel to start a thread to remind us to do our standup.

Screenshot 2024-03-14 at 09.27.26.png

Slack version: @mikker/dailySlackRoundup

1
2
3
4
5
6
7
8
import { discordWebhook } from "https://esm.town/v/stevekrouse/discordWebhook";
export default async function() {
discordWebhook({
url: Deno.env.get("engDiscord"),
content: `<@&1081224342110736394> Daily updates thread ${new Date().toLocaleDateString()} 🚨`,
});
}

Daily Standup Bot

Every weekday at 9am EDT send a message to our team's #engineering Discord channel to start a thread to remind us to do our standup.

Screenshot 2024-03-14 at 09.27.26.png

1
2
3
4
5
6
7
8
import { discordWebhook } from "https://esm.town/v/stevekrouse/discordWebhook";
export default async function() {
discordWebhook({
url: Deno.env.get("engDiscord"),
content: `<@&1081224342110736394> Daily updates thread ${new Date().toLocaleDateString()} 🚨`,
});
}
1
Next