-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
51 lines (51 loc) · 1.83 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
49
50
51
name: 'Nextcloud version matrix'
description: 'Generate nextcloud version matrix for an app'
inputs:
filename:
description: 'The path to the appinfo.xml'
required: false
default: 'appinfo/info.xml'
matrix:
description: 'Other fields to include in the output matrix, json encoded'
required: false
default: '{}'
with_php:
description: 'Extra php versions to use, either a single string or json array. These will be included in the matrix with the "master" server branch'
required: false
default: '[]'
outputs:
matrix:
description: 'Test matrix covering all server versions'
php-matrix:
description: 'Test matrix covering all php versions'
sparse-matrix:
description: 'Test matrix covering all php and server versions with minimal redundancy'
full-matrix:
description: 'Test matrix covering all php and server version combinations'
versions:
description: 'List of supported nextcloud versions'
branches:
description: 'List of branches for the supported nextcloud versions'
ocp-branches:
description: 'List of branches for the supported nextcloud/ocp versions'
php-versions:
description: 'List of supported php versions'
php-max:
description: 'Maximum supported php version'
php-min:
description: 'Minimum supported php version'
php-max-list:
description: 'Maximum supported php version, as a single-item list'
php-min-list:
description: 'Minimum supported php version, as a single-item list'
branches-max:
description: 'Maximum supported server version'
branches-min:
description: 'Minimum supported server version'
branches-max-list:
description: 'Maximum supported server version, as a single-item list'
branches-min-list:
description: 'Minimum supported server version, as a single-item list'
runs:
using: 'node20'
main: 'dist/index.js'