fix(ci): repair reason-quality-eval-nightly workflow file failure (#314)#324
Merged
hurttlocker merged 1 commit intomainfrom Mar 11, 2026
Merged
fix(ci): repair reason-quality-eval-nightly workflow file failure (#314)#324hurttlocker merged 1 commit intomainfrom
hurttlocker merged 1 commit intomainfrom
Conversation
This was referenced Mar 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What this does
Repairs
.github/workflows/reason-quality-eval-nightly.ymlso GitHub Actions accepts the workflow file onmainagain.Also adds a tiny pre-merge guard in CI to catch this exact workflow-file class before merge.
Problem / Context
Issue: #314
Root cause was workflow-file validation failure (not benchmark logic):
secrets.OPENROUTER_API_KEYdirectly inside stepif:expressionssecrets.*inif:expressions at workflow-parse time22954659012) shows:Invalid workflow fileUnrecognized named-value: 'secrets'at theif:linesHow it works
1) Fix nightly workflow validity
File:
.github/workflows/reason-quality-eval-nightly.ymlOPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY }}if: ${{ secrets.OPENROUTER_API_KEY != '' }}if: ${{ secrets.OPENROUTER_API_KEY == '' }}if: ${{ env.OPENROUTER_API_KEY != '' }}if: ${{ env.OPENROUTER_API_KEY == '' }}2) Small pre-merge prevention step
File:
.github/workflows/ci.ymlsecrets.*usage inif:expressionsTesting done
Exact commands run:
go test ./...if grep -RInE "^[[:space:]]*if:[[:space:]]*\$\{\{[[:space:]]*secrets\." .github/workflows/*.yml; then echo "found invalid secrets-if"; exit 1; else echo "workflow-if guard check passed"; fiScreenshots / before-after
Terminal evidence (pre-fix root cause):
Invalid workflow file(Line: 27, Col: 13): Unrecognized named-value: 'secrets'(Line: 39, Col: 13): Unrecognized named-value: 'secrets'(Line: 57, Col: 13): Unrecognized named-value: 'secrets'Breaking changes / risks
Breaking changes: None.
Risk note:
Merge notes