-
Notifications
You must be signed in to change notification settings - Fork 4
/
action.yml
39 lines (39 loc) · 1 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
name: "List Contributors"
description: "Action that will write out the contributors in a repository to a specified markdown file"
author: "Maanuj-Vora"
inputs:
REPO_NAME:
description: "The name of the repo: user/repo_name"
required: true
CONTRIBUTOR:
description: "Where you want to add contributors"
required: true
COLUMN_PER_ROW:
description: "Number of contributors per row"
required: false
default: "6"
ACCESS_TOKEN:
description: "Github Access Token you want to use. Just pass GITHUB_TOKEN"
required: true
IMG_WIDTH:
description: "Width of img"
required: false
default: "100"
FONT_SIZE:
description: "Font size of name"
required: false
default: "14"
FILEPATH:
description: "Path to the file"
required: false
default: "/README.md"
COMMIT_MESSAGE:
description: "Commit message"
required: false
default: "Contributed to Contributer"
branding:
icon: "code"
color: "gray-dark"
runs:
using: "docker"
image: "Dockerfile"