How to control workflowID in Temporal Schedule

When the workflow is trigger by schedule, the workflow ID is appended with the timestamp for the run. How to avoid any prefix/suffix appended, just purely what ever I set?

ScheduleActionStartWorkflow(
                        ...,
                        ...,
                        id=my_unique_id,
                        task_queue=...,
                    ),```

This breaks the uniqueness constraint that I'm trying to use that workflow Id is offering.

Hi @thienha

That is the current implementation, we have an open issue to make it more flexible Schedules - add option for execution workflowid to be "as-is" (not unique per run) · Issue #4795 · temporalio/temporal · GitHub

Please feel free to comment on it.

Antonio