forked from gps/document-postgres-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
29 lines (28 loc) · 989 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
name: "Generate PostgreSQL Schema Documentation"
description: "Generates database schema documentation for a PostgreSQL Database"
author: "Kumar M Shrivatsav <[email protected]>"
inputs:
PATH_TO_DB_SCHEMA_FILE:
description: Path to hand written db schema documentation file relative the project root directory.
required: true
PATH_TO_GENERATED_DB_SCHEMA_FILE:
description: Path where the generated db schema documentation file has to be written to relative the project root directory.
required: true
DATABASE_USER_NAME:
description: PostgreSQL database username.
required: true
DATABASE_PASSWORD:
description: PostgreSQL database password.
required: true
DATABASE_HOST:
description: PostgreSQL database hostname.
required: true
DATABASE_PORT:
description: PostgreSQL database port.
required: true
DATABASE_NAME:
description: PostgreSQL database name.
required: true
runs:
using: "docker"
image: "Dockerfile"