
Announcements
I'm working on setting up a flow to automatically assign members to tasks based on the bucket where each task is created. Here's what I've done so far:
Trigger: The flow activates whenever a new task is created.
Action: I've added a step to "list buckets", which retrieves the available buckets.
Condition: I set a condition to check if the Bucket ID equals "Requests". My intention was that if the task is in the "Requests" bucket, it would trigger one set of actions (assigning specific members). Otherwise, it would fall to the false branch and assign members based on another predefined bucket.
However, when I tested this with a task created in the 'requests' bucket, the condition read as false, and consequently, it failed to assign members based on the false condition.
I anticipate adding more buckets in the future, so I'm looking for guidance on how to structure the flow with multiple conditions to ensure that tasks are assigned to the correct members regardless of which bucket they're in.
One thing I'm unsure about is whether I used the correct identifier (bucket ID or name) in my condition.
I would really appreciate any insight into what I am doing wrong. Thank you