summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2023-03-07 17:07:27 -0500
committerGitHub <noreply@github.com>2023-03-07 17:07:27 -0500
commitdf777ca47310874e6349820a349aa6f10fbc4975 (patch)
tree20382fc30dbf5118c6bdf008848438b6290584f1 /.github
parent2d313f50012b2ac18fba6e9d424654b56445b964 (diff)
Fix build matrix generation for platform EOL check.
It was missing a key in the matrix itself.
Diffstat (limited to '.github')
-rwxr-xr-x.github/scripts/gen-matrix-eol-check.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/scripts/gen-matrix-eol-check.py b/.github/scripts/gen-matrix-eol-check.py
index 9164052a00..dc740065cc 100755
--- a/.github/scripts/gen-matrix-eol-check.py
+++ b/.github/scripts/gen-matrix-eol-check.py
@@ -16,6 +16,7 @@ for item in data['include']:
entries.append({
'distro': item['distro'],
'release': item['version'],
+ 'full_name': f'{ item['distro'] } { item['version'] }'
})
entries.sort(key=lambda k: (k['distro'], k['release']))