Skip to content

Commit

Permalink
777 ci allow skipping temporary skipping license check (#778)
Browse files Browse the repository at this point in the history
* added exit 0 to the license check

* added exit 0 to the license check
  • Loading branch information
maxb-io authored Nov 26, 2023
1 parent cf23722 commit 87d2f42
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/check_license_and_history.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ jobs:
echo $file does not have the Apache 2.0 license header && exit_code=222
fi
done
exit $exit_code
#exit $exit_code
exit 0
- name: Check HISTORY PR
run: |
set +e
Expand All @@ -63,7 +64,8 @@ jobs:
else
history_not_in=0
fi
exit $history_not_in
#exit $history_not_in
exit 0
fi
echo "No files were added"
exit 0
Expand All @@ -80,7 +82,8 @@ jobs:
else
history_not_in=0
fi
exit $history_not_in
#exit $history_not_in
exit 0
fi
echo "No files were added"
exit 0

0 comments on commit 87d2f42

Please sign in to comment.