generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
34 lines (34 loc) · 1.19 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
name: 'QuickSend File Transfer'
description: 'Need to run tests in production? Fear not! The QuickSend GitHub Action sends your things when and where you need them.'
author: 'cskwrd'
inputs:
protocol:
required: true
description: "Possible values are: ['smtp', 'smtps']"
remote-host:
required: true
description: 'The meaning changes slightly based on protocol, but generally, this is the destination where the payload is transferred.'
remote-port:
required: true
description: 'The meaning changes slightly based on protocol, but generally, this is the port this action should connect to at the destination.'
username:
required: true
description: 'The user to connect with.'
password:
required: true
description: 'The password of the user to connect with.'
smtp-from:
required: true
description: 'The email address that should be placed in the FROM field.'
smtp-to:
required: true
description: 'The email address that should be placed in the TO field.'
files:
required: true
description: 'List of file glob patterns selecting files to transfer.'
runs:
using: 'node16'
main: 'dist/index.js'
branding:
icon: 'send'
color: 'green'