generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
31 lines (31 loc) · 921 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
name: 'Supybot IRC Messages Action'
description: 'Send an IRC message to a Supybot instance'
author: 'Vladimir "allejo" Jimenez'
branding:
icon: 'message-square'
color: 'orange'
inputs:
hostname:
required: true
description: 'The hostname and port of the Supybot instance'
credentials:
required: true
description: 'Basic authentication; e.g. `username:password` or `password`'
channel:
required: false
description: 'The IRC channel to send this message to'
status:
required: false
description: 'You must manually specify the job status: success, failure, cancelled'
message:
required: false
description: 'The message to send'
messages:
required: false
description: 'A JSON array of message options to send'
default_message:
required: false
description: 'Send a built-in message about the job status'
runs:
using: 'node12'
main: 'dist/index.js'