generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
39 lines (39 loc) · 1.22 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
name: 'release-matrix-action'
description: 'GitHub Action to generate matrix using "endoflife-date/release-data" dataset'
branding:
icon: 'tag'
color: 'white'
inputs:
search:
description: 'The search keyword for release data'
required: true
date:
description: 'Set the filter for the release by date, e.g: 2023-01-01, 2023'
required: false
version:
description: 'Set the filter for the release by version, e.g: 1.0'
required: false
limit:
description: 'Set the limit for the number of releases to output, default: 3'
required: false
strict:
description: 'Enable strict mode for the search, will throw if no release were found. default: false'
required: false
default: "false"
source-repo:
description: 'The source repository to fetch the data from, default: "endoflife-date/release-data"'
required: false
default: "endoflife-date/release-data"
source-branch:
description: 'The source branch to fetch the data from, default: "main"'
required: false
outputs:
matrix:
description: 'The `matrix` data'
releases:
description: 'The `matrix.release`` data'
versions:
description: 'The `matrix.versions` data'
runs:
using: 'node20'
main: 'dist/index.js'