From d2d332d004e7cfabf396b7c86b323593c0bad9c7 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 3 Nov 2023 16:22:17 +0100 Subject: [PATCH] update action description --- README.md | 48 ++++++++++++++++++++++++++++++++++++++++++++++-- action.yml | 24 ++++++++++++++++++++++-- 2 files changed, 68 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index aea0385..8ea8f0e 100644 --- a/README.md +++ b/README.md @@ -9,13 +9,57 @@ Get a version matrix of server versions to test the app against ## Outputs +### `matrix` + +Test matrix with server branch and php version + ### `versions` -List of version number the app supports +List of supported nextcloud versions ### `branches` -Branches for each supported version, either `stableXX` or `master` for versions that aren't branched yet. +List of branches for the supported nextcloud versions + +### `ocp-branches` + +List of branches for the supported nextcloud/ocp versions + +### `php-versions` + +List of supported php versions + +### `php-max` + +Maximum supported php version + +### `php-min` + +Minimum supported php version + +### `php-max-list` + +Maximum supported php version, as a single-item list + +### `php-min-list` + +Minimum supported php version, as a single-item list + +### `branches-max` + +Maximum supported server version + +### `branches-min` + +Minimum supported server version + +### `branches-max-list` + +Maximum supported server version, as a single-item list + +### `branches-min-list` + +Minimum supported server version, as a single-item list ## License [MIT License](LICENSE.md) diff --git a/action.yml b/action.yml index fd2237e..b4b1520 100644 --- a/action.yml +++ b/action.yml @@ -5,12 +5,32 @@ inputs: description: 'The path to the appinfo.xml' required: false outputs: + matrix: + description: 'Test matrix with server branch and php version' versions: description: 'List of supported nextcloud versions' branches: description: 'List of branches for the supported nextcloud versions' - matrix: - description: 'Test matrix with server branch and php version' + 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'