Skip to content

Commit 2ec75a8

Browse files
committed
fix(ci): allow auto-formatting to pass without failing CI
- Remove exit 1 after successful auto-formatting - CI will now pass if files can be auto-formatted successfully - Add informational message about auto-formatted changes
1 parent eec7f78 commit 2ec75a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
echo "Still failing after auto-format. Manual intervention needed."
6262
exit 1
6363
}
64-
echo "Auto-formatting successful but changes were made. Please commit the formatted files."
65-
exit 1
64+
echo "Auto-formatting successful. All files are now properly formatted."
65+
echo "Note: Some files were auto-formatted. Consider committing these changes in your next commit."
6666
}
6767
echo "Format check passed!"

0 commit comments

Comments
 (0)