generated from austenstone/action-typescript
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
33 lines (31 loc) · 912 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
32
33
name: Venmo Pay
author: Austen Stone
description: Pay or Request money via Venmo
branding:
icon: "dollar-sign"
color: "blue"
inputs:
phone_email_or_username:
description: The phone, email, or username to login with
required: true
password:
description: The password to login with
required: true
recipients:
description: A list of comma separated usernames to send or request money from.
required: true
amount:
description: The amount to send or request. Negative(-) amounts are requests, positive(+) are payments.
required: true
note:
description: The note to send with the transaction
required: true
audience:
description: The audience to send the transaction to. Either "public" or "private"
required: true
otp:
description: The one time password sent to you over text.
required: false
runs:
using: "node16"
main: "dist/index.js"