Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Last active March 4, 2021 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/d91065f68ee532f95ccf7e3aa0b38a86 to your computer and use it in GitHub Desktop.
Save iaindooley/d91065f68ee532f95ccf7e3aa0b38a86 to your computer and use it in GitHub Desktop.
All board members to card
var board = new Trellinator().board("YOUR BOARD NAME");
///DO NOT EDIT BELOW HERE
var list = board.lists().first();
var memberslist = Card.create(list,"ALL MEMBERS LIST");
board.members().each(function(member)
{
memberslist.addMember(member);
});
memberslist.postComment("send members email report");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment