Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Last active March 23, 2020 23:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iaindooley/02d80282b5a52880d4cf79a833980b80 to your computer and use it in GitHub Desktop.
Save iaindooley/02d80282b5a52880d4cf79a833980b80 to your computer and use it in GitHub Desktop.
Add issue tracking link
function addIssueTrackingLink()
{
new Trellinator()
.board("My Kanban")
.cards()
.each(function(card)
{
if(parts = /^#([0-9]+) .*/.exec(card.name()))
{
card.attachLink("https://myissuetracker.com/id/"+parts[1]);
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment