Hello Team,
I am using below search API to fetch jira issues:
let say value of the project and labels are variable then how can i pass in below jql query ?
project_name = 'DEVOPS'
label_name = 'alert_manager'
query = {
'jql': 'project = DEVOPS and labels = alert_manager and summary ~ "TargetResponseTime_5_Sec_For_2min" and status not in (Closed, Done)'
}
i want to pass project_name and label_name variable in above jql. how to pass ?
@[deleted] - I have the following line here for JQL i want to pass two parameters how can I achieve it ?
issues_in_project = jira.search_issues('status = "Pending QA Deployment" AND project = ALPHA', startAt=0, maxResults=2000, validate_query=True, fields=None, expand=None, json_result=None)
two parameters are status and project. Please let me know how to achieve this ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This works for me.
status = "'Pending QA Deployment'"
project = "ALPHA"
issues_in_proj = jira.search_issues('project=%s and status =%s' % (project,status), startAt=0, maxResults=2000, validate_query=True, fields=None, expand=None, json_result=None)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.