-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
44 lines (44 loc) · 1.24 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
name: "ontrack-github-ingestion-build-links"
description: "GitHub Action used to inject build links in Ontrack."
inputs:
# Misc
logging:
description: 'If set to true, logs additional information on the console'
required: false
default: 'false'
# Target project
owner:
description: 'Name of the repository owner to target'
required: false
default: ''
repository:
description: 'Name of the repository to target'
required: false
default: ''
# Target build
build-name:
description: 'Name of the build to target'
required: false
default: ''
build-label:
description: 'Release property (label) of the build to target'
required: false
default: ''
# Replacement mode or appending
add-only:
description: 'If true, just append the given links to the existing ones.'
required: false
default: 'false'
# Raw list of build links
build-links:
description: 'YAML list of links'
required: false
default: ''
# Extracting the links from the `package.json` file `dependencies`
build-links-from-package-json:
description: 'Extracting the links from the `package.json` file `dependencies`'
required: false
default: ''
runs:
using: 'node16'
main: 'dist/index.js'