-
Notifications
You must be signed in to change notification settings - Fork 47
/
action.yml
50 lines (50 loc) · 1.62 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
38
39
40
41
42
43
44
45
46
47
48
49
50
name: "Contribute List"
description: "Automation of contributors list in README.md"
inputs:
image_size:
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
use_username:
description: "To use github-id instead of profile name"
default: "false"
required: false
columns_per_row:
description: "Number of columns in a row"
required: false
default: "6"
collaborators:
description: "Type of collaborators options: all/direct/outside"
required: false
default: "direct"
commit_message:
description: "Commit message of the github action"
default: "docs(contributor): contrib-readme-action has updated readme"
required: false
committer_username:
description: "Username on commit"
required: false
committer_email:
description: "email id of committer"
required: false
auto_detect_branch_protection:
description: "check if branch is protected"
default: "true"
required: false
pr_title_on_protected:
description: "Title of the PR that will be created if the branch is protected"
default: "docs(contributor): contributors readme action update"
required: false
outputs:
pr_id: # id of pr
description: "Id of the generated PR when the branch is in protected mode"
runs:
using: "node20"
main: "dist/index.js"
branding:
icon: "archive"
color: "yellow"