tvl-depot/users/wpcarro/ci/pipelines/post-receive.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
288 B
Nix
Raw Normal View History

{ 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)