Skip to content

Commit

Permalink
enable the check
Browse files Browse the repository at this point in the history
  • Loading branch information
tisutisu committed Aug 16, 2024
1 parent f95ad37 commit 380a49b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions hack/check-task-owners.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ if [ -s "$check_result" ]; then
echo "Please add OWNERS file with atleast 1 approver and 1 reviewer"
fi

# Exit if any OWNERS file is missing
# if [ "$owners_missing"=1 ]; then
# exit 1
# fi
# Exit with non zero error code if OWNERS file is missing
if [ "$owners_missing"=1 ]; then
exit 1
fi



0 comments on commit 380a49b

Please sign in to comment.