We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f77a662 commit 9e5c5b8Copy full SHA for 9e5c5b8
.github/workflows/list.yml
@@ -41,14 +41,7 @@ jobs:
41
- name: Comment Results on PR
42
uses: actions/github-script@v6
43
with:
44
- github-token: ${{secrets.GITHUB_TOKEN}}
45
script: |
46
const fs = require('fs');
47
const kaniOutput = fs.readFileSync('${{github.workspace}}/head/kani_list.txt', 'utf8');
48
-
49
- await github.rest.issues.createComment({
50
- issue_number: ${{ github.event.pull_request.number }},
51
- owner: context.repo.owner,
52
- repo: context.repo.repo,
53
- body: 'Kani List Results:\n```\n' + kaniOutput + '\n```'
54
- });
+ kaniOutput >> "$GITHUB_STEP_SUMMARY"
0 commit comments