We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c74b6d commit 06550d8Copy full SHA for 06550d8
.github/workflows/scripts/generate_matrix.py
@@ -32,12 +32,10 @@ def main():
32
33
if not rows:
34
# Avoid empty matrix which makes Actions error out
35
- rows = [{"app":"noop","board":"noop"}]
+ rows = {"app":"noop","board":"noop"}
36
37
matrix = {"include": rows}
38
print(json.dumps(matrix, indent=2))
39
-
40
- print(f"Generated {len(rows)} matrix rows from {TEMPLATES_XML}")
41
42
if __name__ == "__main__":
43
main()
0 commit comments