Skip to content

Commit

Permalink
Apply fixversion ranking to all fixversions due in the next 6 months
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphbean committed Jan 6, 2025
1 parent 43aa7e0 commit d5761ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rules/team/fixversion_rank.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def _earliest_fixversion_date(issue):
@staticmethod
def _claims(issue) -> bool:
critical_deadline = (
datetime.datetime.today() + datetime.timedelta(days=30 * 3)
datetime.datetime.today() + datetime.timedelta(days=30 * 6)
).strftime("%Y-%m-%d")
date = FixVersionBlock._earliest_fixversion_date(issue)
return date and date < critical_deadline
Expand Down

0 comments on commit d5761ee

Please sign in to comment.