@cryptotaxi247 / netdata-1 / commits / df777ca47

Fix build matrix generation for platform EOL check.

It was missing a key in the matrix itself.

Austin S. Hemmelgarn committed Mar 7, 2023 at 17:07 UTC df777ca47310874e6349820a349aa6f10fbc4975
1 file changed +1
.github/scripts/gen-matrix-eol-check.py
+1
@@ -16,6 +16,7 @@ for item in data['include']:
16 entries.append({
17 'distro': item['distro'],
18 'release': item['version'],
19 + 'full_name': f'{ item['distro'] } { item['version'] }'
20 })
21
22 entries.sort(key=lambda k: (k['distro'], k['release']))