Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix: add zizmor ignore for template-injection
The execution_file output is from the claude-code-action (trusted source),
not user-controlled input, so this is a false positive. Adding explicit
ignore comment to suppress the warning.
  • Loading branch information
david-fraley committed Dec 11, 2025
commit ca7d80f771d9f505c5755a9cd4976237f513e1ac
2 changes: 1 addition & 1 deletion .github/workflows/classify-issue-severity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ jobs:
- name: Extract Result from Execution File
id: extract
env:
EXECUTION_FILE: ${{ steps.analysis.outputs.execution_file }}
EXECUTION_FILE: ${{ steps.analysis.outputs.execution_file }} # zizmor: ignore[template-injection]
run: |
if [ ! -f "$EXECUTION_FILE" ]; then
echo "Execution file not found: $EXECUTION_FILE"
Expand Down