-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaction.yml
35 lines (33 loc) · 880 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
33
34
35
name: "Hacktoberfest Labeler"
description: "A Github Action to automate Hacktoberfest"
branding:
icon: tag
color: orange
### Action inputs (see also args below)
inputs:
github_token:
description: "Github token to use"
required: true
edit_label_name:
description: "The label name to edit"
required: false
default: "hacktoberfest"
edit_label_color:
description: "The label color"
required: false
default: "ffa663"
edit_label_description:
description: "The label description"
required: false
default: "Good issues for Hacktoberfest"
filter_label:
description: "The label to use for filtering issues"
required: false
default: "good first issue"
revert:
description: "If the true the label will be removed instead of added"
required: false
default: "0"
runs:
using: "docker"
image: "Dockerfile"