-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
84 lines (68 loc) · 1.86 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: "WakaTime - Profile Stats"
author: Barthachijuu
description: "Add a Wakatime Coding Activity graph in your Readme"
inputs:
GH_TOKEN:
description: "GitHub access token with Repo scope"
required: true
WAKATIME_API_KEY:
description: "Your Wakatime/Wakapi/Hakatime API Key"
required: true
SHOW_TOTAL_TIME:
description: "Show the total time you have coded"
default: false
required: false
SHOW_PROFILE:
description: "Show the current profile views"
default: false
required: false
SHORT_INFO:
description: "Show the profile info like, repos, follower, etc"
default: false
required: false
SHOW_WAKASTAT:
description: "Show the watatime statistics"
default: true
required: false
SHOW_COMMIT:
description: "Show the commit list for the current day"
default: false
required: false
SHOW_WEEK:
description: "Show the commit list for the current week"
default: false
required: false
SHOW_LANGUAGE:
description: "Show the languages you uses on your repo"
default: false
required: false
SHOW_EDITORS:
description: "Show which editors you use"
default: false
required: false
SHOW_OS:
description: "Show which OS you use"
default: false
required: false
SHOW_PROJECTS:
description: "Show the projects yuo are working on"
default: false
required: false
SHOW_LANGUAGE_PER_REPO:
description: "Show language or framework used across different repository"
default: false
required: false
SHOW_UPDATE_DATE:
description: "Show the upadte date of the readme"
default: false
required: false
INPUT_COMMIT_MESSAGE:
description: "Add a commit message of your choice"
default: "Updated Readme with Waka Stats"
required: false
runs:
using: "node12"
main: "dist/index.js"
branding:
icon: "info"
color: "blue"