forked from olabiniV2/repo-notifications-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
22 lines (22 loc) · 799 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
name: 'Repository Notifications'
description: 'Generates notification messages about different events in the repository'
inputs:
event:
description: 'The JSON serialization of the event'
required: true
default: ''
escape:
description: 'Whether certain variables, such as refs, should be escaped. Only one escaper exists right now, which can by chosen by the value "matrix". The other value is "no".'
require: false
default: 'no'
outputs:
subject:
description: 'The subject of the message - this will be in plain text format and quite short'
message:
description: 'The actual message - this will be several lines, containing HTML formatting, including links'
runs:
using: 'node12'
main: 'index.js'
branding:
icon: 'message-square'
color: 'gray-dark'