-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
58 lines (56 loc) · 1.49 KB
/
action.yml
File metadata and controls
58 lines (56 loc) · 1.49 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
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
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: {}