Add these environment variables from Developer API Keys:
TRELLO_API_KEY
TRELLO_API_TOKEN
# Marks as complete all cards in a list
./complete.sh <list_id>
# Archives all cards in a list
./archive.sh <list_id>
docker build -t trello-automations .
docker run -it \
--env TRELLO_API_KEY=your_key \
--env TRELLO_API_TOKEN=your_token \
trello-automations sh
# Mark all cards in a list as complete every 6 hours
0 */6 * * * complete.sh <list_id>
# Archive all cards in a list every Monday at 1 AM
0 1 * * 1 archive.sh <list_id>