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 4dd61bd commit 25246f8Copy full SHA for 25246f8
.github/workflows/build.yml
@@ -149,12 +149,19 @@ jobs:
149
path: ${{ github.workspace }}/code-coverage-results.md
150
retention-days: 7
151
152
+ - name: Find GitHub PR ID
153
+ if: ${{ github.event_name == 'pull_request' }}
154
+ id: pr_finder
155
+ uses: jwalton/gh-find-current-pr@mv1
156
+ with:
157
+ github-token: ${{ secrets.GITHUB_TOKEN }}
158
+
159
- name: Add coverage PR comment
160
if: ${{ github.event_name == 'pull_request' }}
161
uses: peter-evans/create-or-update-comment@v4
162
with:
163
token: ${{ secrets.GITHUB_TOKEN }}
- issue-number: ${{ github.event.number }},
164
+ issue-number: ${{ steps.pr_finder.outputs.number }},
165
body-path: ${{ github.workspace }}/code-coverage-results.md
166
167
sign:
0 commit comments