-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
33 lines (33 loc) · 1.14 KB
/
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
31
32
33
name: 'Coverage actions'
description: 'Comment coverage difference on PR and save current coverage to an endpoint'
inputs:
action_type:
description: 'Read the coverage from remote and comment it on the pr or write a new coverage to a remote'
required: true
lines_coverage:
description: 'The new (current branch) calculated lines coverage'
required: true
method_coverage:
description: 'The new (current branch) calculated method coverage'
required: true
class_coverage:
description: 'The new (current branch) calculated class coverage'
required: true
storage_adapter:
description: 'The storage adapter to use, available now are DynamoDB and Jsonblob'
required: true
token:
description: 'The token to access github, only required on read'
required: false
pr_number:
description: 'The pull request number, only required on read'
required: false
repo:
description: 'The repository on which to execute, only required on read'
required: false
owner:
description: 'The aforementioned repository owner, only required on read'
required: false
runs:
using: 'node16'
main: 'dist/index.js'