Skip to content

Commit

Permalink
jipdate: add missing Task type
Browse files Browse the repository at this point in the history
Task is missing for the list, so issues of this type are not listed properly.

Signed-off-by: Nicolas Dechesne <[email protected]>
  • Loading branch information
ndechesne authored and roxell committed Jun 6, 2023
1 parent 9223b86 commit 2392109
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jipdate/jipdate.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def get_jira_issues(jira, username):
if not epics_only:
issue_types.append("Initiative")
if not exclude_stories:
issue_types.extend(["Story", "Sub-task", "Bug"])
issue_types.extend(["Story", "Task", "Sub-task", "Bug"])
issue_type = "issuetype in (%s)" % ", ".join(issue_types)

status = 'status in ("In Progress")'
Expand Down

0 comments on commit 2392109

Please sign in to comment.