We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5530ce commit d5aed80Copy full SHA for d5aed80
.github/workflows/ci.yaml
@@ -122,7 +122,9 @@ jobs:
122
- name: Diff the outputs
123
run: |
124
echo '```diff' > diff.md
125
- diff -w -d -r main/generated branch/generated | dd bs=1024 count=30 >> diff.md || true # We ignore diff exiting with a 1 on diff
+ diff --ignore-all-space --minimal --new-file --recursive \
126
+ main/generated \
127
+ branch/generated | dd bs=1024 count=30 >> diff.md || true # We ignore diff exiting with a 1
128
echo -e '\n```' >> diff.md
129
130
- name: Post a comment with the diff
0 commit comments