-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
25 lines (25 loc) · 719 Bytes
/
action.yml
File metadata and controls
25 lines (25 loc) · 719 Bytes
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
name: 'Programmable Banking Transfer Action'
description: 'Transfers money between accounts using Investec Programmable Banking (devinpearson/ipb)'
inputs:
payments-file: # id of input
description: 'Payment File'
required: true
default: 'payments.yml'
clientId:
description: 'Investec API Client ID'
required: true
clientSecret:
description: 'Investec API Client Secret'
required: true
apiKey:
description: 'Investec API Key'
required: true
accountId:
description: 'Account ID of the sending account'
required: true
outputs:
transactionIds:
description: 'Array of transaction IDs for the transfers performed.'
runs:
using: 'node20'
main: 'dist/bundle.js'