diff --git a/.github/helpers/jira-api/jira_con.py b/.github/helpers/jira-api/jira_con.py index 217efd234..b2f8de13d 100644 --- a/.github/helpers/jira-api/jira_con.py +++ b/.github/helpers/jira-api/jira_con.py @@ -61,8 +61,6 @@ def parse_tickets( tickets_json ): #if it does not match ignore it if sum_refined is None: continue - else: - print("got match") try: # if it matches extract the depenency name and folder @@ -195,4 +193,5 @@ def get_summary_list( conn, headers, project_key ): # go through response and pull out summaries of tickets into list. summary_li = parse_tickets( json_in ) + print(summary_li) return summary_li diff --git a/.github/helpers/jira-api/refine_tickets.py b/.github/helpers/jira-api/refine_tickets.py index 498d08d62..f6357bd8d 100644 --- a/.github/helpers/jira-api/refine_tickets.py +++ b/.github/helpers/jira-api/refine_tickets.py @@ -108,7 +108,7 @@ def create_subtasks( update_list, parent_key, project_key, jira_subtask ): # reformat the string to how we want the summary to look update_command = "npm install " + dependency_type + str(dep_name) + "@" + new_version - ver_delta = " from " + str(old_version) + " to " + str(new_version) + ver_delta = " from version " + str(old_version) + " to " + str(new_version) summary_title = "Update " + str(dep_name) + ver_delta + " in " + str(folder_name) description = "To update please run the following command:\n\n' " + update_command + " '"