about summary refs log tree commit diff
path: root/ci/pipelines/pre-receive.nix
diff options
context:
space:
mode:
Diffstat (limited to 'ci/pipelines/pre-receive.nix')
-rw-r--r--ci/pipelines/pre-receive.nix11
1 files changed, 0 insertions, 11 deletions
diff --git a/ci/pipelines/pre-receive.nix b/ci/pipelines/pre-receive.nix
deleted file mode 100644
index 9a30f271ed45..000000000000
--- a/ci/pipelines/pre-receive.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-{ pkgs, ... }:
-
-let
-  pipeline.steps = [
-    {
-      key = "lint";
-      command = "${pkgs.git-secrets}/bin/git-secrets --scan-history";
-      label = ":broom: lint";
-    }
-  ];
-in pkgs.writeText "pipeline.yaml" (builtins.toJSON pipeline)