-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
30 lines (29 loc) · 950 Bytes
/
action.yml
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
name: 'PR Coverage Annotate'
description: 'Scan the Changes in a PR and Use the Coverage Report to display coverage related annotations'
inputs:
token:
description: 'GitHub Token to access the Repo'
required: true
coverage-info-path:
description: 'Path to the LCOV Info file'
default: './coverage/lcov.info'
required: false
total-coverage-files:
description: 'Total Number of Coverage Files to process'
default: 1
required: false
action-type:
description: 'The WorkFlow Event that invoked this Action'
default: 'pull request'
required: false
annotation-coverage:
description: 'if Coverage Annotations should be on top of each file or in-line'
default: 'summarize' # or detailed
required: false
annotation-type:
description: 'Aspects of the Coverage Report to Annotate'
default: 'all' # or line/function/branch
required: false
runs:
using: 'node16'
main: 'index.js'