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/59dc27e1e6a372f085370fd0f08b1a61 to your computer and use it in GitHub Desktop.
Save iaindooley/59dc27e1e6a372f085370fd0f08b1a61 to your computer and use it in GitHub Desktop.
Move only cards in production board
function moveOnlyCardsInProductionBoard(notification)
{
new Notification(notification).movedCard(/Done/i).cardsLinkedInAttachments().each(function(linked)
{
if(linked.board().name() == "Production")
linked.moveTo(/Done/i,"top");
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment