-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
43 lines (40 loc) · 1.01 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
name: 'Webhook Notifier'
author: 'Netail'
description: 'Send a message to a single or to multiple webhooks at once'
inputs:
dry-run:
description: 'Prevent sending the payload'
required: false
default: 'false'
discord-url:
description: 'Discord Webhook URL'
required: false
teams-url:
description: 'Teams Webhook URL'
required: false
slack-url:
description: 'Slack Webhook URL'
required: false
color:
description: 'Color of the message in hexadecimal or title of predefined'
required: false
default: 'success'
title:
description: 'Text at the top of the message'
required: false
default: 'Hello world!'
text:
description: 'Text to be displayed under the title'
required: false
fields:
description: 'Extra info to be displayed under the message'
required: false
buttons:
description: 'Additional buttons under the message'
required: false
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'send'
color: 'blue'