Skip to content

Commit e29288a

Browse files
committed
Fix search directory for templates
1 parent 95c1bfd commit e29288a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/scripts/update_notebook.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def main():
182182
notebook_path = repo_root / "doc" / "llms" / "pyimagej-ai-guide.ipynb"
183183
personas_dir = repo_root / "doc" / "llms" / "personas"
184184
rulesets_dir = repo_root / "doc" / "llms" / "rulesets"
185-
templates_dir = script_dir / "templates"
185+
templates_dir = script_dir.parent / "templates" # .github/templates, not .github/scripts/templates
186186

187187
# Get commit SHA and branch name from environment
188188
commit_sha = os.environ.get("COMMIT_SHA", "main")

0 commit comments

Comments
 (0)