debug: not showing coverage in pr comment #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# name: Comment Coverage on PR | |
# on: | |
# workflow_call: | |
# inputs: | |
# issue-number: | |
# required: true | |
# type: number | |
# artifact-url: | |
# required: true | |
# type: string | |
# # permissions: | |
# # pull-requests: write | |
# # issues: write | |
# jobs: | |
# comment-coverage: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout repository | |
# uses: actions/checkout@v2 | |
# - name: Comment HTML report on PR | |
# uses: peter-evans/create-or-update-comment@v1 | |
# with: | |
# issue-number: ${{ inputs.issue-number }} | |
# body: | | |
# Coverage report is available [here](${{inputs.artifact-url}}). Navigate to 'Artifacts' to download the HTML report. | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |