about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ci/pipelines/briefcase.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/ci/pipelines/briefcase.nix b/ci/pipelines/briefcase.nix
index b01e9f93cb9f..aa39e1ecf7d0 100644
--- a/ci/pipelines/briefcase.nix
+++ b/ci/pipelines/briefcase.nix
@@ -3,7 +3,11 @@
 let
   pipeline.steps = [
     {
-      command = "${pkgs.git-secrets}/bin/git-secrets --scan-history";
+      command = ''
+        git log -n 1
+        git show
+        ${pkgs.git-secrets}/bin/git-secrets --scan-history
+      '';
       label = ":broom: lint";
     }
     {