-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
40 lines (37 loc) · 1.01 KB
/
action.yml
File metadata and controls
40 lines (37 loc) · 1.01 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
name: 'Commit Invaders'
description: 'Generate an animated SVG of Space Invaders from your GitHub contribution graph'
author: 'Goblinlordx'
branding:
icon: 'zap'
color: 'green'
inputs:
github_token:
description: 'GitHub token with read:user scope'
required: true
github_user_name:
description: 'GitHub username to generate the animation for'
required: true
output_branch:
description: 'Branch to commit the SVG to'
required: false
default: 'output'
output_file:
description: 'Output SVG filename'
required: false
default: 'commit-invaders.svg'
no_scoreboard:
description: 'Disable high score board'
required: false
default: 'false'
outputs:
svg_file:
description: 'Path to the generated SVG file'
svg_size:
description: 'Size of the SVG file in bytes'
total_commits:
description: 'Total number of commits in the contribution graph'
animation_duration:
description: 'Animation duration in seconds'
runs:
using: 'node24'
main: "dist/index.cjs"