-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathaction.yml
More file actions
49 lines (49 loc) · 1.63 KB
/
action.yml
File metadata and controls
49 lines (49 loc) · 1.63 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
47
48
49
# Copyright (C) 2024 ETAS and other Eclipse Foundation contributors
#
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#
name: 'quevee'
description: 'QUality-EVEnt Engine for collecting quality-related build and release artifacts'
branding:
icon: 'award'
color: 'green'
inputs:
release_url:
description: 'URL of the release this manifest refers to'
required: false
artifacts_readme:
description: 'Comma-separated list of URLs of READMEs'
required: false
artifacts_requirements:
description: 'Comma-separated list of URLs of requirement files'
required: false
artifacts_testing:
description: 'Comma-separated list of URLs of test results'
required: false
artifacts_documentation:
description: 'Comma-separated list of URLs of documentation artifacts'
required: false
artifacts_coding_guidelines:
description: 'Comma-separated list of URLs of coding guidelines documents'
required: false
artifacts_release_process:
description: 'Comma-separated list of URLs of release process information'
required: false
outputs:
manifest_file:
description: 'Process artifacts manifest file name'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.release_url }}
- ${{ inputs.artifacts_readme }}
- ${{ inputs.artifacts_requirements }}
- ${{ inputs.artifacts_testing }}
- ${{ inputs.artifacts_documentation }}
- ${{ inputs.artifacts_coding_guidelines }}
- ${{ inputs.artifacts_release_process }}