From ff6279a518d277712f59a6469a98ca909633de81 Mon Sep 17 00:00:00 2001 From: Damien Retzinger Date: Sat, 2 May 2026 10:35:01 -0400 Subject: [PATCH] docs: doc supported-versions for recent kind --- supported-version/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/supported-version/README.md b/supported-version/README.md index 5c27b2a..ee1cb3b 100644 --- a/supported-version/README.md +++ b/supported-version/README.md @@ -13,9 +13,10 @@ See the [action.yml](./action.yml) | Input | Description | Required | Default | |-----------------| ------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------- |-----------------------| -| kind | The "kind" of support you're targeting for your package. Allowed values are `currently-supported`, `latest`, `custom`, `nightly` and `all` | false | 'currently-supported' | +| kind | The "kind" of support you're targeting for your package. See [Kinds](#kinds). | false | 'currently-supported' | | project | The project to return the supported versions for. Allowed values are `mage-os` and `magento-open-source` | false | 'magento-open-source' | | 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 | '' | +| 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' | | include_services | Whether to include a `services` key in each matrix entry with GitHub Actions service container configurations for MySQL, search engine, RabbitMQ, and cache. | false | 'true' | ## Kinds @@ -24,6 +25,7 @@ See the [action.yml](./action.yml) - `custom` - A custom subset of the versions, as specified by you. Requires `custom_versions` sibling key. - `usable` - All versions of Magento, minus any that can no longer be installed or used under normal circumstances. - `nightly` - The nightly version of Magento (only available via `https://upstream-nightly.mage-os.org`) +- `recent` - Versions released within a configurable time window from today (see `recent_time_frame`). - `all` - All versions of Magento (including patched/unpatched versions). ## Projects