-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
33 lines (33 loc) · 946 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
31
32
33
name: "i18n coverage"
author: "alexkiro"
description: "Measures and check i18n coverage of your project."
inputs:
translations-path:
description: "Path to translation folder"
required: false
default: "translations/**/*.po"
only-languages:
description: "Only check these languages, comma separated list"
required: false
default: ""
ignore-languages:
description: "Check all languages expect this one, comma separated list"
required: false
default: ""
token:
description: "GitHub Secret Token; if not given the check result is not attached to the commit."
required: false
default: ""
min-coverage:
description: "Minimum percentage (between 0.0 and 100.0) required to mark the check successful."
required: false
default: "0.0"
outputs:
coverage:
description: "Coverage percentage"
branding:
icon: "percent"
color: "green"
runs:
using: "node12"
main: "dist/index.js"