-
Notifications
You must be signed in to change notification settings - Fork 18
36 lines (34 loc) · 1.62 KB
/
coverage.yml
File metadata and controls
36 lines (34 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
name: "Post coverage comment"
on: # yamllint disable-line rule:truthy rule:comments
workflow_run:
workflows: ["CI"]
types:
- "completed"
jobs:
test:
name: "Post coverage comment to PR"
runs-on: "ubuntu-latest"
if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' # yamllint disable-line rule:quoted-strings rule:comments
permissions:
# Gives the action the necessary permissions for publishing new
# comments in pull requests.
pull-requests: "write"
# Gives the action the necessary permissions for editing existing
# comments (to avoid publishing multiple comments in the same PR)
contents: "write" # yamllint disable-line rule:indentation rule:comments
# Gives the action the necessary permissions for looking up the
# workflow that launched this workflow, and download the related
# artifact that contains the comment to be published
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@d1ff8fbb5ff80feedb3faa0f6d7b424f417ad0e13" # v3.30
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