forked from Azure/postgresql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
19 lines (19 loc) · 1.05 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# postgresql action
name: 'Azure PostgreSQL Action'
description: 'Deploy to Azure PostgreSQL database using PL/SQL script files'
inputs:
server-name:
description: 'Server name of Azure DB for PostgreSQL. Example: fabrikam.postgres.database.azure.com'
required: true
connection-string:
description: 'The connection string, including authentication information, for the Azure PostgreSQL Server. Please provide psql connection string. Example: psql "host={host} port={port} dbname={your_database} user={user} password={your_password} sslmode=require"'
required: true
plsql-file:
description: 'Path to PL/SQL script file to deploy. To specify multiple files, use the regex syntax : *.sql or folder/x/<regex>.sql'
required: true
arguments:
description: 'Additional options supported by postgresql simple SQL shell. These options will be applied when executing the given file on the Azure DB for Postgresql. In case of multiple files, the same args will be applied for all files'
required: false
runs:
using: 'node12'
main: 'lib/main.js'