Skip to content

Commit 5566be8

Browse files
Apply ruff fixes
1 parent 771be22 commit 5566be8

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/actions/generate-build-matrix/generate_matrix.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@
77

88
def get_default_combinations(event_name, all_combinations):
99
"""Gets the default build combinations based on the GitHub event type."""
10-
if event_name in ("push", "pull_request", "pull_request_target", "issue_comment", "workflow_dispatch"):
10+
if event_name in (
11+
"push",
12+
"pull_request",
13+
"pull_request_target",
14+
"issue_comment",
15+
"workflow_dispatch",
16+
):
1117
return ["gcc/none"]
1218
elif event_name == "schedule":
1319
return ["gcc/perfetto"]

0 commit comments

Comments
 (0)