Skip to content

Instantly share code, notes, and snippets.

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/a90c681cdc2f4846d71b6f139f12908e to your computer and use it in GitHub Desktop.
Save iaindooley/a90c681cdc2f4846d71b6f139f12908e to your computer and use it in GitHub Desktop.
Add start date to cards in list
function addStartDateToCardsInList()
{
new Trellinator().board("My Board").list("My List").cards().each(function(card)
{
if(!card.customFieldValue("Start Date"))
{
card.setCustomFieldValue("Start Date",Trellinator.now());
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment