-
Notifications
You must be signed in to change notification settings - Fork 317
/
action.yml
38 lines (35 loc) · 902 Bytes
/
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
name: GitHub-Profile-Summary-Cards
description: Generate profile summary cards and commit to default branch
author: vn7n24fzkq
inputs:
USERNAME:
type: string
required: true
description: 'GitHub username'
default: ${{ github.repository_owner }}
BRANCH_NAME:
type: string
required: false
description: 'The branch to push cards'
default: 'main'
UTC_OFFSET:
type: string
required: false
description: 'The UTC offset used in the Productive Time Card.(e.g., 8, -3)'
default: 0
EXCLUDE:
type: string
required: false
description: 'A comma separated list of languages to exclude'
default: ''
AUTO_PUSH:
type: boolean
required: false
description: 'Whether automatically push generated files to desired branch'
default: true
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'activity'
color: 'orange'