-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
78 lines (76 loc) · 2.18 KB
/
action.yml
File metadata and controls
78 lines (76 loc) · 2.18 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: 'Codesphere Deploy'
description: 'Deploys the repository in Codesphere'
branding:
icon: 'circle'
color: 'purple'
runs:
using: 'node20'
main: 'main.js'
inputs:
email:
description: 'email of the codesphere user'
required: true
password:
description: 'Password of the codesphere user account'
required: true
team:
description: 'Name of the codesphere team'
required: true
plan:
description: |
Plan of the created workspace.
Available options:
- Micro
- Boost
- Pro
required: false
default: 'Boost'
onDemand:
description: Use a Codesphere onDemand workspace that shuts down if unused.
required: false
default: 'false'
restricted:
description: |
Wheter the dev domain of the workspace is restricted to team members of
the workspace or public.
required: false
default: 'false'
cloneDepth:
description: Whether the repository clone should be shallow or not.
required: false
skipLfs:
description: Whether to bypass the automatic downloading (smudging) of Git LFS files during git clone.
required: false
default: 'false'
recurseSubmodules:
description: After the clone is created, initialize and clone all submodules.
required: false
default: 'true'
deploymentLinkType:
description: |
Controls the URL format posted in PR comments.
- 'dev-domain' (default): direct link to the running app
- 'preview': link to the IDE preview tab
required: false
default: 'dev-domain'
ciProfile:
description: |
The name of the CI profile to use for the deployment.
If not provided - default profile will be used.
required: false
env:
description: |
Set environment variables in your workspace.
Use dotenv like environment variables definition.
See https://www.npmjs.com/package/dotenv for details.
required: false
vpnConfig:
description: |
Name of the vpn config the workspace should connect to.
The vpn configuration has to be configured in the team before.
required: false
apiUrl:
description: 'codesphere url'
required: false
default: 'https://codesphere.com'
outputs: {}