about summary refs log tree commit diff
path: root/users/wpcarro/ci/pipelines/post-receive.nix
blob: 09b8990e13e255fa5d0161f224b3fd39dfbcef0c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ 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)