Post coverage comment #143
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: Post coverage comment | |
on: | |
workflow_run: | |
workflows: ["CI"] | |
types: | |
- completed | |
permissions: {} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
FORCE_COLOR: "1" | |
PIP_DISABLE_PIP_VERSION_CHECK: "1" | |
PIP_NO_PYTHON_VERSION_WARNING: "1" | |
jobs: | |
display-coverage: | |
name: Display coverage comment | |
runs-on: ubuntu-latest | |
if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' | |
permissions: | |
pull-requests: write | |
contents: write | |
actions: read | |
steps: | |
# DO NOT run actions/checkout here, for security reasons | |
# For details, refer to https://securitylab.github.com/research/github-actions-preventing-pwn-requests/ | |
- name: Post comment | |
uses: py-cov-action/python-coverage-comment-action@v3 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_PR_RUN_ID: ${{ github.event.workflow_run.id }} | |
# Update those if you changed the default values: | |
# COMMENT_ARTIFACT_NAME: python-coverage-comment-action | |
# COMMENT_FILENAME: python-coverage-comment-action.txt |