From ab198e2f498c9e32e0fab94b826c99a26da17bef Mon Sep 17 00:00:00 2001 From: katelyn martin Date: Thu, 8 Feb 2024 15:51:42 -0500 Subject: [PATCH] =?UTF-8?q?feat(ci):=20=F0=9F=94=A8=20print=20up=20to=2012?= =?UTF-8?q?8=20lines=20of=20uncommitted=20changes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/rust.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index c68d904b97..0dff0f723c 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -30,6 +30,7 @@ jobs: if [[ -n "$s" ]]; then echo "ERROR: found modified files that should be committed:" echo "$s" + git diff | head -n 128 exit 1 else echo "OK: no uncommitted changes detected"