-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
46 lines (46 loc) · 1.36 KB
/
action.yml
File metadata and controls
46 lines (46 loc) · 1.36 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
name: 'SDP CI Integration'
description: 'Sends CI/CD data from GitHub Actions to OpenText SDP / SDM.'
branding:
color: blue
icon: arrow-up-circle
inputs:
octaneUrl:
description: 'Url of OpenText SDP / SDM instance'
required: true
octaneSharedSpace:
description: 'Shared Space ID'
required: true
octaneWorkspace:
description: 'Workspace ID'
required: true
octaneClientId:
description: "OpenText SDP / SDM API Access Client ID"
required: true
octaneClientSecret:
description: 'OpenText SDP / SDM API Access Client Secret'
required: true
gitHubToken:
description: 'GitHub PAT'
required: true
serverBaseUrl:
description: 'URL of the organization/repository in GitHub'
required: true
pipelineNamePattern:
description: 'Pattern to build pipeline names'
required: true
unitTestResultsGlobPattern:
description: 'Pattern to search unit test result report files in artifacts'
required: false
gherkinTestResultsGlobPattern:
description: 'Pattern to search Gherkin test result report files in artifacts'
required: false
testingFramework:
description: 'Testing framework to use for the test runner'
required: false
logLevel:
description: 'Sets the log level (1-5): 1-trace, 2-debug, 3-info, 4-warn, 5-error'
required: false
default: 3
runs:
using: 'node20'
main: 'dist/index.js'