@@ -186,6 +186,7 @@ def main(): # pragma: no cover
186186 token = env_vars .gh_token
187187 ignore_users = env_vars .ignore_users
188188 hide_items_closed_count = env_vars .hide_items_closed_count
189+ hide_label_metrics = env_vars .hide_label_metrics
189190 non_mentioning_links = env_vars .non_mentioning_links
190191 report_title = env_vars .report_title
191192 output_file = env_vars .output_file
@@ -322,20 +323,21 @@ def main(): # pragma: no cover
322323 )
323324
324325 write_to_markdown (
325- issues_with_metrics ,
326- stats_time_to_first_response ,
327- stats_time_to_close ,
328- stats_time_to_answer ,
329- stats_time_in_labels ,
330- num_issues_open ,
331- num_issues_closed ,
332- num_mentor_count ,
333- labels ,
334- search_query ,
335- hide_items_closed_count ,
336- non_mentioning_links ,
337- report_title ,
338- output_file ,
326+ issues_with_metrics = issues_with_metrics ,
327+ average_time_to_first_response = stats_time_to_first_response ,
328+ average_time_to_close = stats_time_to_close ,
329+ average_time_to_answer = stats_time_to_answer ,
330+ average_time_in_labels = stats_time_in_labels ,
331+ num_issues_opened = num_issues_open ,
332+ num_issues_closed = num_issues_closed ,
333+ num_mentor_count = num_mentor_count ,
334+ labels = labels ,
335+ search_query = search_query ,
336+ hide_label_metrics = hide_label_metrics ,
337+ hide_items_closed_count = hide_items_closed_count ,
338+ non_mentioning_links = non_mentioning_links ,
339+ report_title = report_title ,
340+ output_file = output_file ,
339341 )
340342
341343 max_char_count = 65535
0 commit comments