summaryrefslogtreecommitdiffstats
path: root/.github/scripts/gen-matrix-eol-check.py
diff options
context:
space:
mode:
Diffstat (limited to '.github/scripts/gen-matrix-eol-check.py')
-rwxr-xr-x.github/scripts/gen-matrix-eol-check.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/scripts/gen-matrix-eol-check.py b/.github/scripts/gen-matrix-eol-check.py
index 638527284..f080e0b56 100755
--- a/.github/scripts/gen-matrix-eol-check.py
+++ b/.github/scripts/gen-matrix-eol-check.py
@@ -21,7 +21,8 @@ for item in data['include']:
entries.append({
'distro': distro,
'release': item['version'],
- 'full_name': f'{ item["distro"] } { item["version"] }'
+ 'full_name': f'{ item["distro"] } { item["version"] }',
+ 'lts': 1 if 'eol_lts' in item and item['eol_lts'] else 0,
})
entries.sort(key=lambda k: (k['distro'], k['release']))