Skip to content

Commit

Permalink
Revert "added exit 0 to the license check" (#790)
Browse files Browse the repository at this point in the history
This reverts commit 73136d7.
  • Loading branch information
Yuval-Ariel authored Dec 25, 2023
1 parent a1f5abe commit c91e999
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/check_license_and_history.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ jobs:
echo $file does not have the Apache 2.0 license header && exit_code=222
fi
done
#exit $exit_code
exit 0
exit $exit_code
- name: Check HISTORY PR
run: |
set +e
Expand All @@ -64,8 +63,7 @@ jobs:
else
history_not_in=0
fi
#exit $history_not_in
exit 0
exit $history_not_in
fi
echo "No files were added"
exit 0
Expand All @@ -82,8 +80,7 @@ jobs:
else
history_not_in=0
fi
#exit $history_not_in
exit 0
exit $history_not_in
fi
echo "No files were added"
exit 0

0 comments on commit c91e999

Please sign in to comment.