For context, I'm calling each workflow a "Watcher". I am trying to run 4 instances of a watcher at once.
The workflow of each watcher is as follows:
----------------------
1. Wait for a file to be created in a specific folder with a specific name
2. Open that file with a specific program
----------------------
I want to run 4 instances of this, each instance waiting for a different file with a different name to be created. These come in at random times on a specific day of the week. So, for example, I want the Watcher to start Watching every Tuesday at 7am.
I've tried using the Power Automate Cloud Parallel Process with the recurring trigger to run the workflows in parallel, but it appears that it's not concurrent. Power Automate will queue all 4 Watcher workflows, but only one can run at a time. This is a huge bottleneck and is pretty dumb. Or I'm dumb, which is totally possible.
How can I run 4 instances of a workflow concurrently, so that anytime a file that my watcher is watching for is uploaded, it'll act on it right away, regardless of the status of the other watchers?