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 3476e2d commit 0f36edbCopy full SHA for 0f36edb
.github/workflows/ubuntu.yml
@@ -390,7 +390,17 @@ jobs:
390
with:
391
files: coverage.xml
392
- name: Upload coverage report artifact
393
+ id: upload-cov
394
uses: actions/upload-artifact@v4
395
396
name: cov-report
397
path: 'cov-report'
398
+ - name: Comment coverage report link
399
+ if: ${{ github.event_name == 'pull_request' }}
400
+ uses: peter-evans/create-or-update-comment@v4
401
+ with:
402
+ token: ${{ secrets.GITHUB_TOKEN }}
403
+ issue-number: ${{ github.event.pull_request.number }}
404
+ body: |
405
+ Coverage report is available for download
406
+ [here](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})
0 commit comments