We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 581a9bf commit 7919e18Copy full SHA for 7919e18
buildscripts/github/llvmdev_evaluate.py
@@ -18,13 +18,15 @@
18
}
19
20
default_include = [
21
- { "runner": runner_mapping["linux-64"],
+ {
22
+ "runner": runner_mapping["linux-64"],
23
"platform": "linux-64",
- "recipe": "llvmdev"
24
+ "recipe": "llvmdev",
25
},
- { "runner": runner_mapping["win-64"],
26
27
+ "runner": runner_mapping["win-64"],
28
"platform": "win-64",
29
30
31
{
32
"runner": runner_mapping["win-64"],
@@ -33,7 +35,10 @@
33
35
34
36
]
37
-print(f"Deciding what to do based on event: '{event}', label: '{label}', inputs: '{inputs}'")
38
+print(
39
+ "Deciding what to do based on event: "
40
+ f"'{event}', label: '{label}', inputs: '{inputs}'"
41
+)
42
if event == "pull_request":
43
print("pull_request detected")
44
include = default_include
0 commit comments