Skip to content

Post coverage comment #1202

Post coverage comment

Post coverage comment #1202

name: Post coverage comment
on:
workflow_run:
workflows: ["CI"]
types:
- completed
jobs:
test:
name: Publish coverage comment
runs-on: ubuntu-latest
if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success'
permissions:
actions: read
pull-requests: write
contents: write
steps:
- name: Post comment
uses: py-cov-action/python-coverage-comment-action@main
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_PR_RUN_ID: ${{ github.event.workflow_run.id }}