From a242b15857c6c6fc061c58fbb282674ec9b4f452 Mon Sep 17 00:00:00 2001 From: Martin Yeo <40734014+trexfeathers@users.noreply.github.com> Date: Tue, 18 Nov 2025 18:55:34 +0000 Subject: [PATCH] Use correct type for checking ignored paths. --- templates/_templating_scripting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/_templating_scripting.py b/templates/_templating_scripting.py index f7757eb..de0a3a7 100755 --- a/templates/_templating_scripting.py +++ b/templates/_templating_scripting.py @@ -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: