From 2dc9bc00d67b3c0720470a59db84054d80eac50c Mon Sep 17 00:00:00 2001 From: Stable Genius Date: Sun, 1 Mar 2026 20:58:13 -0800 Subject: [PATCH] refactor(ci): use diff -u for pyrefly diff output (#32813) Co-authored-by: Stable Genius <259448942+stablegenius49@users.noreply.github.com> --- .github/workflows/pyrefly-diff.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pyrefly-diff.yml b/.github/workflows/pyrefly-diff.yml index 1900232dce..14338e85b3 100644 --- a/.github/workflows/pyrefly-diff.yml +++ b/.github/workflows/pyrefly-diff.yml @@ -48,7 +48,7 @@ jobs: - name: Compute diff run: | - diff /tmp/pyrefly_base.txt /tmp/pyrefly_pr.txt > pyrefly_diff.txt || true + diff -u /tmp/pyrefly_base.txt /tmp/pyrefly_pr.txt > pyrefly_diff.txt || true - name: Save PR number run: |