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 e61f725 commit c532db5Copy full SHA for c532db5
.github/workflows/csv-coverage-pr-artifacts.yml
@@ -75,10 +75,9 @@ jobs:
75
- name: Save PR number
76
run: |
77
mkdir -p pr
78
- echo ${{ github.event.number }} > pr/NR
+ echo ${{ github.event.pull_request.number }} > pr/NR
79
- name: Upload PR number
80
uses: actions/upload-artifact@v2
81
with:
82
name: pr
83
path: pr/
84
-
.github/workflows/csv-coverage-pr-comment.yml
@@ -56,7 +56,7 @@ jobs:
56
57
PR=$(cat "pr/NR")
58
python misc/scripts/library-coverage/compare-files-comment-pr.py \
59
- out_merge out_base comparison.md ${{ github.repository }} $PR $RUN_ID
+ out_merge out_base comparison.md "$GITHUB_REPOSITORY" "$PR" "$RUN_ID"
60
- name: Upload comparison results
61
62
0 commit comments