Post coverage comment #288
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: ["Run linters and tests"] | |
types: | |
- completed | |
jobs: | |
test: | |
name: Run tests & display coverage | |
runs-on: ubuntu-latest | |
if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' | |
permissions: | |
pull-requests: 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@44f4df022ec3c3cbb61e56e0b550a490bde8aa73 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_PR_RUN_ID: ${{ github.event.workflow_run.id }} |