I've configured a custom Rovo Bot to automatically create structured bug tickets in Jira from user descriptions. The bot is designed to immediately generate a complete bug report with all required fields (Summary, Description, Environment, Steps to Reproduce, etc.) whenever a user mentions an issue.
The Issue:
The bot does not create the Jira ticket on the first attempt. Instead, I have to explicitly ask it to "create the ticket" or "do it again" in a follow-up message before it actually executes the agent_action_jira_issue_create action.
When I provide an issue description, the bot should:
When I provide an issue description, the bot:
agent_action_jira_issue_createf7371bc8-c21e-4645-95bf-5c98dae05febThe bot's response metadata shows:
{
"scenario": {
"id": "f7371bc8-c21e-4645-95bf-5c98dae05feb",
"name": "Agvengers Flow",
"actionIds": ["agent_action_jira_issue_create"]
},
"actions": [],
"plugin_invocations": []
}
Notice that "actions": [] is empty on the first attempt, even though the action is configured in the scenario.
My bot is instructed to:
The instructions emphasize immediate ticket creation, but the bot seems to only format the report without triggering the action.
agent_action_jira_issue_create action is enabled in the scenarioAny guidance on ensuring the Jira action executes on the first attempt would be greatly appreciated!