-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaction.yml
46 lines (45 loc) · 1.12 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
44
45
46
name: 'send email action'
description: 'send email from actions'
branding:
icon: mail
color: red
inputs:
smtp-server: # id of input
description: 'smtp server'
required: false
default: 'smtp.office365.com'
smtp-server-port: # id of input
description: 'smtp server port'
required: false
default: 25
auth-user: # id of input
description: 'auth user'
required: true
auth-password: # id of input
description: 'auth password'
required: true
subject: # id of input
description: 'mail subject'
required: false
body:
description: 'The message to be sended'
required: false
default: 'Hello'
from: # id of input
description: 'where is the message from'
required: true
to:
description: 'Who to send'
required: true
is-tls:
description: 'use secure connection?'
required: false
commit-message:
description: 'send commit message as body'
required: false
outputs:
time: # id of output
description: 'Al Fin Se Me Dio, Como Nadie Lo Esperaba, Me Acerque Y Se Me Dio Y Como Ella Lo Queria'
runs:
using: 'node12'
main: 'dist/index.js'