Jira integration in the free tier. #2250
|
Hello, I have been inspecting the code and the documentation but I could not make the Jira integration work. So far I have found a related function in pr_agent/tools/ticket_pr_compliance_check.py with signature def find_jira_tickets(text): However, this is an unused function. Besides, I have tried to locate the config key "jira_api_token" but it is only present here: I would like to confirm if Jira integration is only available in the pro version. In my opinion, I believe that it is confusing because in the free version there is a .md document that explains Jira integration (docs/docs/core-abilities/fetching_ticket_context.md). Thanks. Best wishes. |
Replies: 2 comments
|
I just landed here after unsuccessfully trying to set up the Jira integration. |
|
Your reading of the code is right, and thank you for the precise trace. In this repository PR #2420 is open and actively being worked, adding Jira Cloud ticket-context support in a provider-agnostic way with a |
Your reading of the code is right, and thank you for the precise trace. In this repository
find_jira_ticketsis dead code:extract_ticketsfetches Asana tasks, GitHub issues and Azure DevOps work items, and never reaches a Jira branch. There is no[jira]configuration section either, sojira_api_tokensurvives only in the settings redaction list. The documentation page is genuinely misleading on this point, and the follow-up comment is right that it should carry a caveat until the code catches up.PR #2420 is open and actively being worked, adding Jira Cloud ticket-context support in a provider-agnostic way with a
[jira]section and tests, so the gap is being closed rather than declared o…