Skip to content

Commit 8a4e50f

Browse files
committed
Fix template path - should be workflows/workflows/triage/
The checkout action with 'path: workflows' creates this structure: - workflows/ (root of checked out repo) - workflows/workflows/ (the workflows/ dir inside the repo) - workflows/workflows/triage/ (the triage workflow) So the template is at workflows/workflows/triage/templates/report.html, not workflows/triage/templates/report.html. Fixes: https://github.com/ambient-code/workflows/actions/runs/21152110683 Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 13c5bcd commit 8a4e50f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/triage-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ jobs:
162162
from datetime import datetime
163163
164164
# Read template
165-
with open('workflows/triage/templates/report.html', 'r') as f:
165+
with open('workflows/workflows/triage/templates/report.html', 'r') as f:
166166
template = f.read()
167167
168168
# Read triaged issues

0 commit comments

Comments
 (0)