generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 20
/
action.yml
29 lines (28 loc) · 813 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
name: "Issue Auto Labeling and Assigning"
description: "trigger an action based on issue content"
inputs:
github-token:
description: "Github token"
required: true
parameters:
description: "JSON array of keywords to look for and labels and assignees to be set when there's a keyword match"
required: true
title-or-body:
description: "Whether to check the issue title, the issue body, or both for matching keywords"
required: false
default: "both"
outputs:
title:
description: "Title of Issue"
body:
description: "Body of Issue"
labeled:
description: "\"true\" if labeled otherwise \"false\""
assigned:
description: "\"true\" if assigned otherwise \"false\""
runs:
using: "node12"
main: "lib/index.js"
branding:
icon: alert-circle
color: gray-dark