-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
42 lines (42 loc) · 1.32 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
name: "Wait"
description: "Wait a designated number of milliseconds"
inputs:
ssh_key:
description: "ssh key"
default: null
prod_apt_deps:
description: "wether or not to install all apt dependencies used in production envoriments"
default: false
chrome:
description: "wether or not to download chrome"
default: false
rubocop:
description: "wether or not to download rubocop"
default: false
postgres:
default: false
description: "wether or not to install postgresql-client and wait for initialization"
postgresql db:
description: 'POSTGRES_DB - name for the default database that is to be configured'
default: "backends_test"
postgresql user:
description: 'POSTGRES_USER - the user with superuser power'
default: 'backends_u'
postgresql password:
description: 'POSTGRES_PASSWORD - superuser password'
default: 'abc'
postgresql port:
description: "port which the postgresql service is running on"
default: 5432
gem_server_credentials:
default: null
description: "credentials for gem server"
gem_github_credentials:
default: null
description: "credentials for gem github packages"
set_env_var:
default: true
description: "set envorimental variables based on env files in env/ if it exists"
runs:
using: 'node12'
main: 'index.js'