Skip to content

Commit f57dee8

Browse files
kenibrewerclaude
andcommitted
🐛 fix: correct coverage threshold format from percentage to decimal
- Change thresholdAll from 90 to 0.90 (90%) - Change thresholdNew from 95 to 0.95 (95%) - Fixes orgoro/coverage action interpreting 90 as 9000% - Current 92% coverage should now pass 0.90 (90%) threshold 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent a5cf026 commit f57dee8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test-approval-automation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ jobs:
5151
with:
5252
coverageFile: .github/workflows/lib/coverage.xml
5353
token: ${{ secrets.GITHUB_TOKEN }}
54-
thresholdAll: 90
55-
thresholdNew: 95
54+
thresholdAll: 0.90
55+
thresholdNew: 0.95
5656

5757
validate-approval-logic:
5858
name: Validate Approval Logic

0 commit comments

Comments
 (0)