Small bot that sends a weekly reminders of whose turn it is to do the cleaning, and what day of the week the Trash needs to be taken out.
The database of this project relies on two files members.yml
and teams.yml
.
The teams.yml
file contains the number of teams and it must be sorted by order, the first team in the least will be the next team picked by the bot, and then will update the list automatically after sending the message.
The members.yml
file contains the members of each team, please edit this file if you need to add or remove any member of the house.
For instance, one of the task of this bot is to send a custom message every week's Monday at 8:00 am (JST).
You can change the frequency of this task in the respective worflow file, in this case is the .github/workflows/main.yml
file.
Go to line 5 and edit the - cron
field. You can follow this guide if you are not familiar with the Cron Syntax.
on:
schedule:
- cron: "0 23 * * 0"