Hi @Ramazan_BIYIK,
Could you please share a full screenshot of your flow's configuration?
Could you please show a bit more about these actions within the "Apply to each 2" action?
Further, could you please show more details about the erroe message?
I have made a test on my side and the issue is confiormed on my side. The error message shows up as below:
The error message told that there is something wrong with the contains function. The contains function expects its two parameters matching following types:
contains(a dictionary, a key (string))
contains(an array, a value (object))
contains(a string, a substring)
But the result the triggerBody()?['issue']?['id'] expression (Id dynamic content) returned is a Integer type, so the error occurs. Please take a try with the following formula within your Condition box and check if the issue is solved:
@and(contains(items('Apply_to_each')?['title'], triggerBody()?['repository']?['name']),contains(items('Apply_to_each')?['title'], string(triggerBody()?['issue']?['id'])))
I have made a test on my side and my flow's configuration as below:
The flow works successfully as below:
Best regards,
Kris