We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe8dc6b commit 1bce134Copy full SHA for 1bce134
.github/workflows/evaluate.yaml
@@ -156,3 +156,15 @@ jobs:
156
run: |
157
echo "📊 Evaluation Results" >> $GITHUB_STEP_SUMMARY
158
python -m evaltools summary evals/results --output=markdown >> $GITHUB_STEP_SUMMARY
159
+
160
+ - name: Comment on pull request
161
+ uses: actions/github-script@v7
162
+ with:
163
+ script: |
164
+ const { GITHUB_STEP_SUMMARY } = process.env;
165
+ github.rest.issues.createComment({
166
+ issue_number: context.issue.number,
167
+ owner: context.repo.owner,
168
+ repo: context.repo.repo,
169
+ body: GITHUB_STEP_SUMMARY
170
+ })
0 commit comments