-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathaction.yml
42 lines (39 loc) · 1.06 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
34
35
36
37
38
39
40
41
42
name: "Points Bar"
description: "Generates a points/progress SVG bar"
inputs:
points:
description: "Points string separated with a / slash."
required: true
path:
description: "File path to save the generated SVG to."
required: true
type:
description: "Style of bar to generate; either bar or badge."
default: "default"
required: false
bar-color:
description: "Color to use for the points bar."
required: false
bar-background:
description: "Background color for the points bar."
required: false
font-color:
description: "Color to use for text."
required: false
label:
description: "Text to use for label part of points bar."
default: "Points"
required: false
width:
description: "Bar/badge width."
required: false
reverse:
description: "Reverse the progress direction of the bar. i.e. Progress bar moves from right to left."
default: false
required: false
runs:
using: "node20"
main: "dist/index.js"
branding:
icon: award
color: green