forked from akhilmhdh/contributors-readme-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
37 lines (37 loc) · 1.16 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
name: 'Contribute List'
description: 'Automation of contributors list in README.md'
inputs:
image_size: # id of input
description: 'Size of square images in the stack'
required: false
default: '100'
readme_path:
description: 'Path of the readme file you want to update'
default: 'README.md'
required: false
columns_per_row: # id of input
description: 'Number of columns in a row'
required: false
default: '6'
collaborators: # id of input
description: 'Type of collaborators options: all/direct/outside'
required: false
default: 'direct'
commit_message:
description: 'Commit message of the github action'
default: 'contrib-readme-action has updated readme'
required: false
committer_username:
description: 'Username on commit'
default: 'contrib-readme-bot'
required: false
committer_email:
description: 'email id of committer'
default: '[email protected]'
required: false
runs:
using: 'node12'
main: 'dist/index.js'
branding:
icon: 'archive'
color: 'black'