J6zJasuVZX7Vh87jYq8pList tickets resolved by a user
List tickets resolved by a user
There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
inputs
outputs
import json
from jira import JIRA
creds = _get_creds(cred_label)['creds']
username = creds['username']
api_key = creds['password']
myjira = None
if username and api_key and jira_server:
myjira = JIRA(
server=jira_server,
basic_auth=(username, api_key)
)
else:
_problem = True
msg = "Missing username or API key"
print(msg)
resolved_issues = []
if myjira:
issues = myjira.search_issues(f'project={project} AND assignee="{user}" AND status=done')
for issue in issues:
resolved_issues.append({'id': issue.key, 'summary': issue.fields.summary})
print(resolved_issues)
copied