This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
trello-bot/Readme.md

24 lines
854 B
Markdown
Raw Normal View History

2024-03-04 02:11:29 +00:00
# Trello Bot
Just some trello functions because i don't want to lean Automations....
# Functions
## reset-daily-tasks
Add a Label with the text "Daily" and a colome with the Text "ToDo", it will move all card with the label to thiw collume if run, so best run its every day ...
## remove-done-cards
Remove cards from the "Done" list which are older than 7 days
## move-backlog-card-with-date
Move all cards in the Backlog where the due date is in the past to the "ToDo" list and remove the due date
2024-03-04 03:13:58 +00:00
## unassign-cards
Assign all card with have no assign user to the user how run the script
2024-03-04 02:11:29 +00:00
# Example Cron setup
```
*/5 * * * * /home/pi/trello-bot-pi move-backlog-card-with-date
0 5 * * * /home/pi/trello-bot-pi reset-daily-tasks
0 5 * * * /home/pi/trello-bot-pi remove-done-cards
2024-03-04 03:13:58 +00:00
*/5 * * * * /home/pi/trello-bot-pi unassign-cards
2024-03-04 02:11:29 +00:00
```