You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| kind | The "kind" of support you're targeting for your package. Allowed values are `currently-supported`, `latest`, `custom`, `nightly` and `all`| false | 'currently-supported' |
17
-
| project | The project to return the supported versions for. Allowed values are `mage-os` and `magento-open-source`| false | 'magento-open-source' |
18
-
| custom_versions | The versions you want to support, as a comma-separated string, i.e. 'magento/project-community-edition:2.3.7-p3, magento/project-community-edition:2.4.2-p2' | false | '' |
16
+
| kind | The "kind" of support you're targeting for your package. See [Kinds](#kinds). | false | 'currently-supported' |
17
+
| project | The project to return the supported versions for. Allowed values are `mage-os` and `magento-open-source`| false | 'magento-open-source' |
18
+
| custom_versions | The versions you want to support, as a comma-separated string, i.e. 'magento/project-community-edition:2.3.7-p3, magento/project-community-edition:2.4.2-p2' | false | '' |
19
+
| recent_time_frame | The time frame (from today) used when `kind` is `recent`. Combination of years (y), months (m), and days (d), e.g. `2y 2m 2d`. | false | '2y' |
19
20
20
21
## Kinds
21
22
-`currently-supported` - The currently supported Magento Open Source versions by Adobe.
22
23
-`latest` - The latest version of Magento only.
23
24
-`custom` - A custom subset of the versions, as specified by you. Requires `custom_versions` sibling key.
24
25
-`usable` - All versions of Magento, minus any that can no longer be installed or used under normal circumstances.
25
26
-`nightly` - The nightly version of Magento (only available via `https://upstream-nightly.mage-os.org`)
27
+
-`recent` - Versions released within a configurable time window from today (see `recent_time_frame`).
26
28
-`all` - All versions of Magento (including patched/unpatched versions).
Copy file name to clipboardExpand all lines: supported-version/action.yml
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ description: "A Github Action that computes the Github Actions matrix for the ch
5
5
inputs:
6
6
kind:
7
7
required: false
8
-
description: "The kind of versions you want to return. Allowed values are `currently-supported`, `latest`, `custom`, `usable`, `nightly`, and `all`"
8
+
description: "The kind of versions you want to return. Allowed values are `currently-supported`, `latest`, `custom`, `usable`, `nightly`, `recent` and `all`"
9
9
default: "currently-supported"
10
10
project:
11
11
required: false
@@ -17,12 +17,17 @@ inputs:
17
17
description: "The specific custom versions of Magento that you want to use. Only applies when `kind` is `custom`"
18
18
default: ""
19
19
20
+
recent_time_frame:
21
+
required: false
22
+
default: "2y"
23
+
description: "The time frame (from today). Only used in `recent` kind. String that defines a time duration using a combination of years (y), months (m), and days (d). Each unit is optional and can appear in any order, separated by spaces. For example `2y 2m 2d`. "
24
+
20
25
outputs:
21
26
matrix:
22
27
description: "The Github Actions matrix of software technologies required to run Magento."
0 commit comments