forked from qentinelqi/qentinel-pace-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
52 lines (50 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
49
50
51
52
name: 'Qentinel Pace'
description: 'Run a test suite in Qentinel Pace'
branding:
icon: 'check-circle'
color: 'orange'
inputs:
access_token:
description: 'Pace access token'
required: true
project_id:
description: 'Id of the project containing the suite'
required: true
suite_id:
description: 'Id of the suite to run'
required: true
wait_result:
description: 'Wait for the run to finish. Default is "true".'
required: false
default: 'true'
ignore_failed:
description: 'Pass the step even if the run failed. Default is "false".'
required: false
default: 'false'
branch:
description: 'Which branch to run the tests from'
required: false
record:
description: 'Record the run'
required: false
run_type:
description: 'Type of the run'
required: false
tag:
description: 'Tag for the branch to run the tests from'
required: false
api_url:
description: 'Alternative url for the API for development purposes'
required: false
outputs:
build_id:
description: 'The buildId of the run'
result:
description: 'The result of the test suite run'
duration:
description: 'The execution time in seconds'
link:
description: 'Link to the results'
runs:
using: 'node12'
main: 'index.js'