-
Notifications
You must be signed in to change notification settings - Fork 5
/
action.yml
32 lines (32 loc) · 903 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
name: 'My Awesome list'
description: 'Generate awesome list from user starred repositories'
branding:
icon: align-justify
color: yellow
inputs:
compact-by-topic:
description: 'Generate another page with output compacted by github topics'
default: 'false'
required: false
api-token:
description: 'Personal API Token'
required: true
github-name:
description: 'Name shown in the commit'
default: 'GitHub Actions'
required: false
github-email:
description: 'Email shown in the commit'
default: 'actions@users.noreply.github.com'
required: false
template-path:
required: false
description: 'EJS template path relative to project root directory'
default: 'TEMPLATE.ejs'
output-filename:
description: 'The output file name, default to README.md'
required: false
default: 'README.md'
runs:
using: 'node16'
main: 'index.js'