Skip to content

Commit 73df367

Browse files
fix(ci): remove exit 1 from lint-and-fix to allow pipeline to continue
1 parent 5ee1f11 commit 73df367

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,10 @@ jobs:
5050
git commit -m "style: auto-linting and formatting [skip ci]"
5151
git push origin HEAD:${{ github.ref_name }}
5252
53-
- name: Fail if changes were made
53+
- name: Notify if changes were made
5454
if: steps.ruff.outputs.changes == 'true'
5555
run: |
56-
echo "Linting failed and fixes were applied. A new commit has been pushed."
57-
exit 1
56+
echo "Linting fixes were applied and pushed to the repository."
5857
5958
test:
6059
needs: [lint-and-fix]

0 commit comments

Comments
 (0)