From cf2fcce7f054e74f5fc5c6dc1d1cca040f7b05be Mon Sep 17 00:00:00 2001 From: Michael Valdron Date: Wed, 18 Oct 2023 12:15:52 -0400 Subject: [PATCH] show generated source changes in CI failure if found Signed-off-by: Michael Valdron --- .github/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 98789b2d..47027a11 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -52,6 +52,7 @@ jobs: if [[ ! -z "${GEN_DIFFS}" ]] then echo "generated source does not match current changes " + for f in ${GEN_DIFFS}; do git diff HEAD -- $f; done exit 1 fi