-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
action.yml
53 lines (53 loc) · 1.49 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
43
44
45
46
47
48
49
50
51
52
53
name: "advent-readme-stars"
author: k2bd
description: >
Automatically update a README with an up-to-date table of your advent of code
progress.
runs:
using: docker
image: Dockerfile
inputs:
userId:
description: >
AoC user ID. See the README for instructions on getting this.
required: true
sessionCookie:
description: >
AoC session cookie - make sure to keep this in a repo secret! See the
README for instructions on getting this.
required: true
leaderboardId:
description: >
AoC leaderboard ID. See the README for instructions on getting this.
required: false
default: ""
tableMarker:
description: >
Unique text marking where the stars board section should go. Should be a
comment, i.e. <!--- text enclosed in these markers --->, which is not
used elsewhere in the README, and which should appear alone on its own
line.
required: false
default: "<!--- advent_readme_stars table --->"
starSymbol:
description: Symbol to use in the stars table
required: false
default: ⭐
year:
description: >
Year to post the table for. Defaults to the year of the most recent
December
required: false
default: ""
headerPrefix:
description: >
Prefix to use for the header before the table, e.g. "##"
required: false
default: "##"
readmeLocation:
description: Location of the README file
required: false
default: "README.md"
branding:
icon: "star"
color: "purple"