We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ff7aaa commit 25b76afCopy full SHA for 25b76af
.github/workflows/pr_build.yml
@@ -56,13 +56,14 @@ jobs:
56
path: ${{github.workspace}}/${{env.file_name}}
57
58
# add report as PR comment (if PR)
59
- - name: comment PR
60
- uses: machine-learning-apps/pr-comment@master
61
- if: ${{ github.event_name == 'pull_request' }}
62
- env:
63
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ - name: Comment on PR
+ uses: peter-evans/create-or-update-comment@v4
+ if: github.event_name == 'pull_request'
64
with:
65
- path: ${{env.file_name}}
+ token: ${{ secrets.GITHUB_TOKEN }}
+ issue-number: ${{ github.event.pull_request.number }}
+ body-path: ${{ env.file_name }}
66
+ edit-mode: replace
67
68
- name: Code Coverage Report
69
uses: irongut/[email protected]
0 commit comments