about summary refs log tree commit diff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/depotfmt.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/depotfmt.nix b/tools/depotfmt.nix
index 312ef3f8df..8c8e99c089 100644
--- a/tools/depotfmt.nix
+++ b/tools/depotfmt.nix
@@ -35,5 +35,9 @@ let
       --tree-root .
   '';
 in depotfmt.overrideAttrs(_: {
-  passthru.check = check;
+  passthru.meta.ci.extraSteps.check = {
+    label = "depot formatting check";
+    command = check;
+    alwaysRun = true;
+  };
 })