Skip to content

Comment on pull request #11

Comment on pull request

Comment on pull request #11

Workflow file for this run

name: Comment on pull request
on:
workflow_run:
workflows:
- .NET
types:
- completed
jobs:
comment:
runs-on: ubuntu-latest
if: >
github.event.workflow_run.event == 'pull_request' &&
github.event.workflow_run.conclusion == 'success'
steps:
- name: Download coverage results
uses: actions/download-artifact@v4
with:
name: coverage
path: code-coverage-results.md
run-id: ${{ github.event.workflow_run.id }}
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Add coverage PR comment
uses: marocchino/sticky-pull-request-comment@v2
with:
recreate: true
path: code-coverage-results.md