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
2 changes: 1 addition & 1 deletion templates/_templating_scripting.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ def create_issue(title: str, body: str) -> None:
for changed_path in changed_paths:
template = CONFIG.find_template(pr_repo, changed_path)
is_templated = template is not None
ignored = changed_path in ignore_dict[pr_repo]
ignored = str(changed_path) in ignore_dict[pr_repo]
if ignored:
continue
if is_templated:
Expand Down
Loading