Skip to content

Typo "Azure DB for PostgreSQL"→"Azure Database for PostgreSQL" #42

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"'
Expand All @@ -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/<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'
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'
Expand Down