From 87d2f429c1520280e77afafbb8b1dd4b3f9e3a34 Mon Sep 17 00:00:00 2001 From: maxb-io <105273783+maxb-io@users.noreply.github.com> Date: Sun, 26 Nov 2023 09:06:17 +0200 Subject: [PATCH] 777 ci allow skipping temporary skipping license check (#778) * added exit 0 to the license check * added exit 0 to the license check --- .github/workflows/check_license_and_history.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check_license_and_history.yml b/.github/workflows/check_license_and_history.yml index 6f67c82415..9710a264c5 100644 --- a/.github/workflows/check_license_and_history.yml +++ b/.github/workflows/check_license_and_history.yml @@ -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 @@ -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 @@ -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