-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
37 lines (37 loc) · 1.07 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
name: 'ALM Octane GitHub Actions Integration'
description: 'Sends CI/CD data from GitHub Actions to ALM Octane.'
inputs:
octaneUrl:
description: 'Url of ALM Octane instance'
required: true
octaneSharedSpace:
description: 'Shared Space ID'
required: true
octaneWorkspace:
description: 'Workspace ID'
required: true
octaneClientId:
description: "ALM Octane API Access Client ID"
required: true
octaneClientSecret:
description: 'ALM Octane 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
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'