diff --git a/action.yml b/action.yml index fff48757..de460d0f 100644 --- a/action.yml +++ b/action.yml @@ -3,7 +3,7 @@ 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' + description: 'Server name of Azure Database 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"' @@ -12,7 +12,7 @@ inputs: description: 'Path to PL/SQL script file to deploy. To specify multiple files, use the regex syntax : *.sql or folder/x/.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' + description: 'Additional options supported by postgresql simple SQL shell. These options will be applied when executing the given file on the Azure Database for Postgresql. In case of multiple files, the same args will be applied for all files' required: false runs: using: 'node12'