forked from kiegroup/chain-status
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
48 lines (47 loc) · 1.6 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
45
46
47
48
name: "Chain Status Action"
author: "Enrique Mingorance Cano <emingora@redhat.com>"
description: Generates data for chain status webpage
inputs:
definition-file:
description: "The file where the build chain is defined. It can a file in the same repository (relative path) or a URL."
required: false
projects:
description: "The comma-separated list of projects from which you want to gather data"
required: false
title:
description: "The project title."
default: "Project Status"
required: false
subtitle:
description: "The project subtitle."
default: "Contribution status"
required: false
output-folder-path:
description: "the path where the file should be stored"
required: false
base-branch-filter:
description: "A comma separated list of base branches RegEx to be filtered. Like `main,7.59.x,8.x` or `main,^7.*`"
required: false
project-filter:
description: "A comma separated list of project RegEx to be filtered. Like `drools,opta.*` or `jbpm,^drools.*`"
required: false
created-by:
description: "The user/machine/whatever that regenerates the report"
default: "github action"
required: false
created-url:
description: "Normally the job generating the info URL"
required: false
logger-level:
description: "the log level. 'info' (default) | 'trace' | 'debug'"
default: "info"
required: false
branches:
description: "A comma separated list of branches to compare. Like `main,8.30.x,8.29.x`"
required: false
runs:
using: "node16"
main: "packages/action/dist/index.js"
branding:
icon: "box"
color: "red"