-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathaction.yml
More file actions
26 lines (26 loc) · 962 Bytes
/
action.yml
File metadata and controls
26 lines (26 loc) · 962 Bytes
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
name: 'Code Coverage Annotations'
description: 'Annotate your pull requests to show where test coverage is missing'
author: '@ggilder'
branding:
icon: alert-triangle
color: orange
inputs:
GITHUB_TOKEN:
required: true
description: 'Github token from workflow. This is automatically generated by github and is rotated. You can limit scopes of this token as well.'
GITHUB_BASE_URL:
required: false
description: 'Github base URL. Set this if you are using a GitHub Enterprise Server or a instance on `ghe.com``.'
default: 'https://api.github.com'
COVERAGE_FILE_PATH:
required: true
description: 'Path to coverage file'
COVERAGE_FORMAT:
required: false
description: 'Format of coverage file. May be `lcov`, `clover`, or `go`.'
DEBUG:
required: false
description: "Log debugging information. Comma-separated list of possible values `coverage`, `pr_lines_added`"
runs:
using: 'node16'
main: 'dist/index.js'