depot/third_party/tvl/users/wpcarro/ci/pipelines/post-receive.nix
Default email a291c8690a Project import generated by Copybara.
GitOrigin-RevId: e6e19f3d81a982a62e1bba08f0b4f7fdc21b4ea0
2022-05-19 16:39:52 +02:00

14 lines
288 B
Nix

{ pkgs, depot, ... }:
let
inherit (builtins) path toJSON;
pipeline.steps = [
{
key = "lint-secrets";
command = "${pkgs.git-secrets}/bin/git-secrets --scan-history";
label = ":broom: lint secrets";
}
];
in
pkgs.writeText "pipeline.yaml" (toJSON pipeline)