File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -157,14 +157,15 @@ jobs:
157
157
if : ${{ success() }}
158
158
run : |
159
159
echo "📊 Evaluation Results" >> $GITHUB_STEP_SUMMARY
160
- python -m evaltools summary evals/results --output=markdown >> $GITHUB_STEP_SUMMARY
160
+ python -m evaltools summary evals/results --output=markdown >> eval-results.md
161
+ cat eval-results.md >> $GITHUB_STEP_SUMMARY
161
162
162
163
- name : Comment on pull request
163
164
uses : actions/github-script@v7
164
165
with :
165
166
script : |
166
167
const fs = require('fs');
167
- const summaryPath = process.env.GITHUB_STEP_SUMMARY ;
168
+ const summaryPath = "eval-results.md" ;
168
169
const summary = fs.readFileSync(summaryPath, 'utf8');
169
170
github.rest.issues.createComment({
170
171
issue_number: context.issue.number,
You can’t perform that action at this time.
0 commit comments