Skip to content

Commit 919f618

Browse files
fix: update err-ignore test to accept new oasdiff output message
oasdiff now returns "No changes to report, but the specs are different" when all breaking changes are suppressed via err-ignore, instead of empty output (which the entrypoint mapped to "No breaking changes"). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent ee78a59 commit 919f618

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ jobs:
322322
${{ steps.test_breaking_err_ignore.outputs.breaking }}
323323
$delimiter
324324
)
325-
if [ "$output" != "No breaking changes" ]; then
326-
echo "Expected 'No breaking changes' but got '$output'" >&2
325+
if [ "$output" != "No changes to report, but the specs are different" ]; then
326+
echo "Expected 'No changes to report, but the specs are different' but got '$output'" >&2
327327
exit 1
328328
fi

0 commit comments

Comments
 (0)