-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
67 lines (67 loc) · 2.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: 'paint'
description: 'A GitHub action to paint text in your contribution graph'
branding:
icon: 'message-square'
color: 'black'
runs:
using: 'docker'
image: 'Dockerfile'
inputs:
text:
description: 'Text to display on the contribution graph'
required: true
token:
description: 'GitHub personal access token with access to create/delete repositories, push commits, and read user information'
required: true
user:
description: 'GitHub username to generate contribution graph for'
required: false
repo:
description: 'Dummy GitHub repository to push the commits to'
required: true
visibility:
description: 'Visibility of the dummy repository (public, private, internal, or visibility of the repository being painted to)'
required: false
git_name:
description: 'Name to use for the git commits (defaults to name found in the GitHub user profile of the associated token)'
required: false
git_email:
description: 'Email to use for the git commits (defaults to email found in the GitHub user profile of the associated token)'
required: false
start:
description: 'Start date for the contribution graph (YYYY-MM-DD, defaults to today - 1y. Start rounds to the previous sunday)'
required: false
end:
description: 'End date for the contribution graph (YYYY-MM-DD, defaults to today. End rounds to the next saturday)'
required: false
force_date:
description: 'Skip any date rounding and force the date range to be used for the contribution graph (YYYY-MM-DD to YYYY-MM-DD format)'
required: false
separator:
description: 'Separator for the contribution graph'
required: false
default: '|'
inverse:
description: 'Invert the color of the pixels on the contribution graph'
required: false
default: false
repeat:
description: 'Repeat the text on the contribution graph as many times as possible'
required: false
default: false
valign:
description: 'Vertical alignment of the text on the contribution graph (top, center, bottom)'
required: false
default: 'center'
halign:
description: 'Horizontal alignment of the text on the contribution graph (left, center, right)'
required: false
default: 'center'
padding:
description: 'Padding around the text on the contribution graph (in (top, right, bottom, left) format)'
required: false
default: '0 0 0 0'
dry_run:
description: 'Do not push any commits to the targeted repository'
required: false
default: false