Update fields

This commit is contained in:
2025-07-27 13:33:52 -04:00
parent fac0274223
commit 5e8963ef4b
2 changed files with 104 additions and 14 deletions

View File

@ -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)