-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathaction.yml
57 lines (57 loc) · 1.6 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
51
52
53
54
55
56
57
name: "Auto-add contributors"
description: "Add contributors to your file automatically on schedule"
author: "BobAnkh"
branding:
icon: 'award'
color: 'orange'
inputs:
REPO_NAME:
description: "The name of the repo: user/repo_name"
required: false
default: ''
CONTRIBUTOR:
description: "Where you want to add contributors"
required: false
default: '### Contributors'
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 (px)"
required: false
default: '14'
PATH:
description: "Path to the file you want to add contributors' list. You can use <branch>:<file> format to specify the branch"
required: false
default: '/README.md'
BRANCH:
description: "The branch to update file specified in PATH"
required: false
default: ''
PULL_REQUEST:
description: "Open a new pull request if set to a target branch name"
required: false
default: ''
COMMIT_MESSAGE:
description: "Commit message"
required: false
default: 'docs(README): update contributors'
AVATAR_SHAPE:
description: "Set `round` for round avatar and `square` for square avatar"
required: false
default: 'square'
IGNORED_CONTRIBUTORS:
description: "Ignored contributors, seperated by comma"
required: false
default: ''
runs:
using: "docker"
image: "Dockerfile"