Update fields
This commit is contained in:
@ -17,6 +17,21 @@ tick = jira.issue("AETHER-1")
|
||||
|
||||
deployment_requirements = get_field(tick, jf.DEPLOYMENT_REQUIREMENTS)
|
||||
reporter = get_field(tick, jf.REPORTER)
|
||||
created_date = get_field(tick, jf.CREATED)
|
||||
updated_date = get_field(tick, jf.UPDATED)
|
||||
status = get_field(tick, jf.STATUS)
|
||||
issuetype = get_field(tick, jf.ISSUETYPE)
|
||||
project = get_field(tick, jf.PROJECT)
|
||||
priority = get_field(tick, jf.PRIORITY)
|
||||
print(f"{created_date=}", type(created_date))
|
||||
print(f"{updated_date=}", type(updated_date))
|
||||
print(f"{reporter=}", type(reporter))
|
||||
print(f"{deployment_requirements=}", type(deployment_requirements))
|
||||
print(f"{status=}", type(status))
|
||||
print(f"{issuetype=}", type(issuetype))
|
||||
print(f"{project=}", type(project))
|
||||
print(f"{priority=}", type(priority))
|
||||
|
||||
|
||||
update_fields = UpdateFields()
|
||||
update_fields.add_field(jf.RELEASE_TRAIN, rt.GAMMA_TRAIN)
|
||||
|
Reference in New Issue
Block a user