Skip to content
Merged
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
4 changes: 2 additions & 2 deletions script/github-check-new-issue-for-duplicates.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ def fetch_issue(issue_number: int):

def should_skip(issue):
"""Check if issue should be skipped in duplicate detection process."""
if issue["type"] not in ["Bug", "Crash"]:
log(f" Skipping: issue type '{issue['type']}' is not a bug/crash report")
if issue["type"] and issue["type"] not in ["Bug", "Crash"]:
log(f" Skipping: issue type '{issue['type']}' is not blank and not a bug/crash report")
return True

if issue["author"] and check_team_membership(REPO_OWNER, STAFF_TEAM_SLUG, issue["author"]):
Expand Down
Loading