-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
32 lines (32 loc) · 962 Bytes
/
action.yml
File metadata and controls
32 lines (32 loc) · 962 Bytes
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
name: 'Kalu Testing GitHub Issue Notifier'
description: 'Notifies email receiptients of a new GitHub issue based on labels.'
branding:
color: 'green'
icon: 'mail'
inputs:
fromMailAddress:
description: 'Email from address'
required: true
default: 'no-reply@example.com'
toMailAddress:
description: 'Semi-colon separated list of email address recipients'
required: true
subject:
description: 'Subject line'
required: true
default: 'Notification: A label was applied to an Issue on GitHub'
subjectPrefix:
description: 'Prefix in the subject line. The issue title will be added after this'
required: false
default: '__NONCE__'
labelsToMonitor:
description: 'A JSON array-formatted list of labels to monitor'
required: true
default: '[{breaking-change}]'
verbose:
description: 'Turn on verbose logging'
required: false
default: false
runs:
using: 'node12'
main: 'dist/index.js'