I am creating a custom board button in the "Automation" Trello function. I have several cards in a list with different labels and I would like certain cards with certain labels to be automatically moved to another list.
I created this button:
move each card in list "Recommendations Sent" with the blue "Coach's note" label with the blue "Sunscreen" label to list "New cards" on board "Team - Algorithm"
but what I need it to do is:
move each card in list "Recommendations Sent" with the blue "Coach's note" label OR the blue "Sunscreen" label to list "New cards" on board "Team - Algorithm"
How do I make this functionality "or" and not "and"?
Thanks!
Learned this recently and tested it just now :
move each card with the red "regex:/.*(Apple|Strawberry).*/" label in list "Inbox" to list "Done"
You can apply to the your situation since the labels are of the same colour.
@milynnus note that this will look for any label containing Apple or Strawberry, you could also do:
move each card with the blue "regex:/(Coach's note|Sunscreen)/i" label in list "Inbox" to list "Done"
without the ".*" which will look for an exact match. The "/i" at the end makes it case insensitive
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How do I do the "regex" for the button? I don't see that in the Automation Board buttons option.
Also all the labels won't have the same color fyi (just in the example I showed). I have about 25 labels I need to do this for.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.