8000 GitHub - itaibo/trello-automations: Scripts to automate actions on Trello
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

itaibo/trello-automations

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Trello automations

Requirements

Add these environment variables from Developer API Keys:

  • TRELLO_API_KEY
  • TRELLO_API_TOKEN

Available scripts

# Marks as complete all cards in a list
./complete.sh <list_id>

# Archives all cards in a list
./archive.sh <list_id>

Docker

docker build -t trello-automations .

docker run -it \
  --env TRELLO_API_KEY=your_key \
  --env TRELLO_API_TOKEN=your_token \
  trello-automations sh

Schedule with cron

# 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>

About

Scripts to automate actions on Trello

Resources

Stars

Watchers

Forks

0