Just trying out a Trello Trigger node that should run when a Card is moved to a specified List.
Have set the node up with the list ID in the Model ID field.
When I move a card, the workflow is started twice! Both executions return the same data.
What could be causing this?
Thanks
Realised that there were indeed two different actions being carried out:
âaction_move_card_from_list_to_listâ
âaction_moved_card_higherâ
There downât seem to be a way of specifying which actions to listen for so it looks like I can just add an IF node to filter the one I want.
1 Like
Hi @seank1968, glad to hear you sorted it out and many thanks for sharing your solution!
Iâm having the same problem, but I donât find this âaction_moved_card_higherâ in my jsonâŚ
How did you manage to find out the problem?
@suardim In the incoming JSON from the Trello trigger there is:
"display":{
"translationKey":"action_move_card_from_list_to_list",
"entities":{
"card":{
"type":"card",
"idList":"456456456140f",
"id":"605b294456456456458e33a03",
"shortLink":"UYHh9Rfn",
"text":"Card Title"
},
"listBefore":{
"type":"list",
"id":"605a031ae46db53a3f41140e",
"text":"Doing"
},
"listAfter":{
"type":"list",
"id":"605456456456456f41140f",
"text":"Done"
},
In one of the exectutions it was âtranslationKeyâ:âaction_move_card_from_list_to_listâ, and in the other it was âtranslationKeyâ:âaction_moved_card_higherâ,
They may be something different in your.
1 Like