-
-
Notifications
You must be signed in to change notification settings - Fork 640
Expand file tree
/
Copy pathaction.yml
More file actions
227 lines (181 loc) · 5.76 KB
/
Copy pathaction.yml
File metadata and controls
227 lines (181 loc) · 5.76 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
name: 'Profile Readme Development Stats'
author: Anmol Pratap Singh
description: 'Are you an early 🐤 or a night 🦉? When are you most productive during the day? Check out in your readme!'
inputs:
GH_TOKEN:
description: 'GitHub access token with Repo scope'
required: true
default: ${{ github.token }}
PUSH_TOKEN:
description: 'GitHub token used for git authentication (clone/remote URL/push). To prevent polluting your activity feed, pass the workflow GitHub token and ensure your workflow has contents write permission.'
required: false
default: ${{ github.token }}
WAKATIME_API_KEY:
description: 'Your Wakatime API Key'
required: true
WAKATIME_API_URL:
description: 'Your Wakatime API URL'
required: false
default: "https://wakatime.com/api/v1/"
SECTION_NAME:
description: 'Name used in readme to scope the updated section'
required: false
default: "waka"
PULL_BRANCH_NAME:
required: false
description: "The branch to get the readme from"
default: ""
PUSH_BRANCH_NAME:
required: false
description: "The branch to update the readme in"
default: ""
SHOW_OS:
required: false
description: 'Show the list of OS Worked on In dev metrics'
default: "True"
SHOW_PROJECTS:
required: false
description: 'Show the list of projects worked on in dev metrics'
default: "True"
SHOW_EDITORS:
required: false
description: 'Show the Editors used in dev metrics'
default: "True"
SHOW_TIMEZONE:
required: false
description: 'Show the time zone in the dev metrics'
default: "True"
SHOW_COMMIT:
required: false
description: "Shows the number of commit graph in the dev metrics"
default: "True"
SHOW_LANGUAGE:
required: false
description: "Show the Coding language used in dev metrics"
default: "True"
SHOW_LINES_OF_CODE:
required: false
description: "Show the Total Lines of code written Badge till date"
default: "False"
SHOW_LANGUAGE_PER_REPO:
required: false
description: "Show language or framework used across different repository"
default: "True"
SHOW_LOC_CHART:
required: false
description: ""
default: "True"
SHOW_DAYS_OF_WEEK:
required: false
description: "show day of week you are most productive"
default: "True"
SHOW_PROFILE_VIEWS:
required: false
description: "Shows the current profile views"
default: "True"
SHOW_SHORT_INFO:
required: false
description: "Shows the short facts"
default: "True"
SHOW_UPDATED_DATE:
required: false
description: "Show updated date"
default: "True"
SHOW_TOTAL_CODE_TIME:
required: false
description: "Show Total Time you have coded"
default: "True"
SHOW_AI_CODE_TIME:
required: false
description: "Show the all-time AI Code Time badge"
default: "True"
SHOW_AI_CODING:
required: false
description: "Show the weekly AI coding breakdown (AI vs human lines, cost, model breakdown, sessions)"
default: "True"
COMMIT_BY_ME:
required: false
description: "Git commit with your own name and email"
default: "False"
COMMIT_MESSAGE:
required: false
description: "Git commit message"
default: "Updated with Dev Metrics"
COMMIT_USERNAME:
required: false
description: "Git commit custom username"
default: ""
COMMIT_EMAIL:
required: false
description: "Git commit custom email"
default: ""
COMMIT_SINGLE:
required: false
description: "Erase commit history on each commit"
default: "False"
LOCALE:
required: false
description: "Show stats in your own language"
default: "en"
UPDATED_DATE_FORMAT:
required: false
description: "Updated date format"
default: "%d/%m/%Y %H:%M:%S"
IGNORED_REPOS:
required: false
description: "Repos you don't want to be counted"
default: ""
MAX_REPOS:
required: false
description: "Maximum number of GitHub repositories to fetch (0 = unlimited)"
default: "0"
MAX_CAP:
required: false
description: "(Deprecated) Alias for MAX_REPOS"
default: "0"
SYMBOL_VERSION:
required: false
description: "Version of the symbol block and empty of the progress bar"
default: "1"
BADGE_STYLE:
required: false
description: "Style for the badge maker (flat, flat-square, plastic, for-the-badge, social)"
default: "flat"
FORCE_ADD:
required: false
description: "Whether to override repository .gitignore file while committing the assets"
default: "False"
BAR_STYLE:
required: false
description: "Whether the bar should be SVG or Unicode text"
default: "text"
BAR_COLOR:
required: false
description: "Hex color for the filled portion of the SVG bar"
default: "#90CAF9"
BAR_TRACK_COLOR:
required: false
description: "Hex color for the background track of the SVG bar"
default: "#172F45"
BAR_RADIUS:
required: false
description: "Border radius for rounded corners of the SVG bar"
default: "0"
TEXT_PRIMARY_COLOR:
required: false
description: "Hex color for primary SVG list text (e.g. language names)"
default: "#c9d1d9"
TEXT_SECONDARY_COLOR:
required: false
description: "Hex color for secondary SVG list text (e.g. times, percentages)"
default: "#8b949e"
DEBUG_LOGGING:
required: false
description: "Whether to enable action debug logging"
default: ${{ runner.debug }}
runs:
using: 'docker'
image: 'docker://wakareadmestats/waka-readme-stats:master'
branding:
icon: 'activity'
color: 'orange'