From 57c97dcb7a9f163dcaeaf6e4dcc7941a7d5766a3 Mon Sep 17 00:00:00 2001 From: Michael Daniels Date: Thu, 12 Jun 2025 12:51:16 -0400 Subject: [PATCH] report.py: add commit to output JSON --- nixpkgs_review/report.py | 1 + 1 file changed, 1 insertion(+) diff --git a/nixpkgs_review/report.py b/nixpkgs_review/report.py index 3f86a2c2..2c4d1d3f 100644 --- a/nixpkgs_review/report.py +++ b/nixpkgs_review/report.py @@ -337,6 +337,7 @@ def json(self, pr: int | None) -> str: { "systems": list(self.system_reports.keys()), "pr": pr, + "commit": self.commit, "checkout": self.checkout, "extra-nixpkgs-config": self.extra_nixpkgs_config, "only_packages": list(self.only_packages),