-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathaction.yml
More file actions
49 lines (49 loc) · 1.61 KB
/
Copy pathaction.yml
File metadata and controls
49 lines (49 loc) · 1.61 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
name: 'GitHub Stats Terminal Style'
description: 'Generate Terminal-Style GitHub Stats SVG cards for your developer profile README'
author: 'yogeshwaran01'
branding:
icon: 'terminal'
color: 'purple'
inputs:
username:
description: 'GitHub username to fetch stats for (defaults to repository owner)'
required: false
default: '${{ github.repository_owner }}'
token:
description: 'GitHub personal access token (GHT) for higher rate limits'
required: false
default: '${{ github.token }}'
theme:
description: 'Visual theme for the terminal window (e.g. dracula, tokyonight, catppuccin, nord)'
required: false
default: 'dracula'
headerStyle:
description: 'The style of the window header (mac, windows, retro)'
required: false
default: 'mac'
typingSpeed:
description: 'Simulated typing speed delay in milliseconds'
required: false
default: '80'
hostname:
description: 'Hostname prompt inside the shell prompt'
required: false
default: 'github.com'
commands:
description: 'Comma-separated list of commands to run (whoami, neofetch, languages, top-repos, git-log, ps, uptime, exit)'
required: false
default: 'whoami,neofetch,languages,uptime,exit'
outputPath:
description: 'The output file path relative to workspace root'
required: false
default: 'github_stats.svg'
sourceType:
description: 'Source type context (user or repo)'
required: false
default: 'user'
target:
description: 'Explicit target username or repository (owner/repo) override'
required: false
runs:
using: 'node20'
main: 'dist/src/action/index.js'