-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
48 lines (47 loc) · 1.27 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
43
44
45
46
47
48
name: testermc
author: gmitch215
description: Tests a Minecraft Plugin on a Minecraft Server
branding:
icon: 'server'
color: green
inputs:
path:
description: 'The path to the plugin to test'
required: true
runtime:
description: 'The server runtime to use for the action'
required: true
# Default Inputs
version:
description: 'The version of the server to use'
required: false
build:
description: 'Specifies a specific build of the runtime to use'
required: false
time:
description: 'The time to run the server for, in seconds'
required: false
default: "120"
flags:
description: 'The flags to pass to the server'
required: false
default: ""
experimental:
description: 'Whether to use experimental builds'
required: false
default: "false"
use-similar-versions:
description: 'Whether to use found similar versions if the exact version is not found'
required: false
default: "true"
commands:
description: 'The commands to run on the server after startup'
required: false
default: ""
files:
description: 'Files to copy into the server before it begins'
required: false
default: ""
runs:
using: 'node20'
main: 'dist/index.js'