Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scout_bounties.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def evaluate(item):
return None
if any(g in haystack for g in INTERVIEW_GATE):
return None
if "epic" in _label_names(item): # tracking issues split into many slices = saturated, not one winnable bounty
if "epic" in _label_names(item) or re.search(r"\bepic\b", str(item.get("title", "")), re.IGNORECASE): # tracking issues split into many slices = saturated, not one winnable bounty
return None

return amount, age
Expand Down