A github hook that creates a checklist element in a trello card when an issue with a specific name is created on github.
For example:
- You have a card on trello with ID=ABCDE.
- You create an issue that contains [ABCDE] in it's title
- The webhook automatically generates a checklist on the Trello card, with the issue name.
- When the issue is closed, the webhook will mark that issue as done on Trello.
Simply setup three ENVs, that contains TRELLO KEYS:
TRELLO_KEY=<your api key>
TRELLO_SECRET=<your api secret>
TRELLO_TOKEN=<your token>To obtain those data, please refer to the documentation of this module:
https://github.com/adunkman/node-trello
Save this bookmark to open a new issue related to a trello card.
To make it work, simply go to you trello board, open the card you want to refer and click the bookmark. A new issue page will be opened for you.
javascript:window.open(encodeURI("https://github.com/YOUR_NAME/YOUR_REPO/issues/new?title=[" + window.location.href.split("/")[4] + "]&body=\n\n\n----\nRefers to " + window.location.href))- Refactor
- Improve checklist checks