taskell
taskell copied to clipboard
Non-interactive trello import
Hello,
Request
Add -y flag to non-interactively import a trello (or github for that matter) board.
# Allow -y to make import noninteractive
taskell -ty trelloID repo/trello.md
Use case:
I am collaborating with an external team on trello. I want to monitor the progress of the project over several years.
My plan was to import the trello board every night (via cron) into a local git repository and commit the changes. Then I can use git diff to see what changes from day to day.
Bash pseudocode:
rm repo/trello.md
taskell -t trelloID repo/trello.md
cd repo
git commit -m "automated message"
Problem:
At present, when I run above pseudocode taskell prompts me -
Fetching from Trello...
Create /home/riazarbi/repo/trello.md? (Y/n):
This breaks my cron job.
I can see the use case. Will have a look into it.