There was an error while loading. Please reload this page.
1 parent 0defe2e commit a5206a5Copy full SHA for a5206a5
1 file changed
.github/scripts/filter-sarif.py
@@ -14,6 +14,9 @@
14
# Keep at least one run
15
runs = runs if len(runs) > 0 else [sarif["runs"][0]]
16
17
+ for i, run in enumerate(runs):
18
+ run["tool"]["driver"]["name"] += f"_{i}"
19
+
20
sarif["runs"] = runs
21
22
with open("out.sarif", "w") as out:
0 commit comments