forked from eclipse-dash/quevee
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
50 lines (50 loc) · 1.73 KB
/
Copy pathaction.yml
File metadata and controls
50 lines (50 loc) · 1.73 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
50
# Copyright (C) 2024 ETAS
#
# This program and the accompanying materials are made available under the
# terms of the Apache License, Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0.
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
# SPDX-License-Identifier: Apache-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_documentation:
description: 'Comma-separated list of URLs of documentation artifacts'
required: false
artifacts_license:
description: 'Comma-separated list of URLs containing licensing information'
required: false
artifacts_readme:
description: 'Comma-separated list of URLs of readme files'
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
outputs:
manifest_file:
description: 'Process artifacts manifest file name'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.release_url }}
- ${{ inputs.artifacts_documentation }}
- ${{ inputs.artifacts_license }}
- ${{ inputs.artifacts_readme }}
- ${{ inputs.artifacts_requirements }}
- ${{ inputs.artifacts_testing }}