Formerly known as Azure AI Services or Azure Cognitive Services is a unified collection of prebuilt AI capabilities within the Microsoft Foundry platform
Hello Pratim Das, Partha C,
Welcome to Microsoft Q&A and Thank you for reaching out.
I understand you're trying to configure a Microsoft Foundry (New) workflow to run automatically every 5 minutes. Currently, when you create a blank workflow, it defaults to:
trigger:
kind: OnConversationStart
This trigger is system-defined and tied to conversational agent scenarios. At this time, this trigger is not editable in the new Foundry workflow experience.
About Scheduled Triggers
While you may come across examples like the following:
kind: workflow
trigger:
kind: Scheduled
interval: "5m"
actions:
- kind: InvokeAzureAgent
id: YourAgentID
Please note that Scheduled triggers are not currently supported in Microsoft Foundry Workflows (New experience). Modifying the YAML to include kind: Scheduled will not work because time-based triggers are not available in the workflow runtime today.
Recommended Approach
To achieve execution every 5 minutes, the supported pattern is:
- Keep the Foundry workflow as-is.
Use an external scheduler to invoke the workflow endpoint on a recurring basis.
You can use any of the following Azure services:
Azure Logic Apps (Recurrence trigger)
Azure Functions (Timer Trigger)
Azure Automation
Azure Data Factory
Any external cron job that calls the workflow endpoint via REST API
Architecture Flow:
Every 5 minutes → External scheduler triggers → Calls Foundry workflow endpoint → Workflow executes
This approach is currently the recommended and supported design for time-based automation.
Please refer this
I Hope this helps. Do let me know if you have any further queries.
Thank you!