-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
34 lines (34 loc) · 972 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
30
31
32
33
34
name: 'ServerPilot'
description: 'Interface with the ServerPilot API via a GitHub Action'
inputs:
client_id:
description: 'Your ServerPilot client ID for the API connection'
required: true
default: ''
api_key:
description: 'Your ServerPilot API Key for the API connection'
required: true
default: ''
system_user:
description: 'The ServerPilot user to operate as when running commands'
required: true
default: ''
action:
description: 'The action to perform your ServerPilot account'
required: true
default: ''
app_name:
description: 'The name of the app to create or remove'
required: true
default: ''
php_version:
description: 'What the PHP version should be if we are creating a new app'
required: false
default: "7.1"
domain:
description: 'The domain to use for this app if we are creating a new one'
required: false
default: ''
runs:
using: 'node12'
main: 'index.js'