I am trying to make a delayed action Flow to combine into current design with using Post an adaptive card to a Teams channel and wait for a response.
So, theoretically, when this this action is performed, Flow posts adaptive card to Teams channel and sets itself to "Running" state until action is complete. Let's say it has button in the card with Action.Submit:
{
"type": "Action.Submit",
"title": "Press the Button"
}
And if I create Condition after card action, with: @body('MyCard')['submitActionID'] is equal to "Press the Button", once button is pressed, Flow goes on with further steps.
Is it possible to make a parallel branch with Delay actions and keep posting replies to the card message until button is pressed?
So far all my attempts to make paralleling branching logic fail because until action.submit is 'pressed', nothing keep happening.
The goal is to have Flow posting replies under original card message using Post reply to a message V2 every 15 minutes, unless "Press the Button" is pressed, then just stop and terminate.