Skip to content

Commit 87d2f42

Browse files
authored
777 ci allow skipping temporary skipping license check (#778)
* added exit 0 to the license check * added exit 0 to the license check
1 parent cf23722 commit 87d2f42

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/check_license_and_history.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ jobs:
5050
echo $file does not have the Apache 2.0 license header && exit_code=222
5151
fi
5252
done
53-
exit $exit_code
53+
#exit $exit_code
54+
exit 0
5455
- name: Check HISTORY PR
5556
run: |
5657
set +e
@@ -63,7 +64,8 @@ jobs:
6364
else
6465
history_not_in=0
6566
fi
66-
exit $history_not_in
67+
#exit $history_not_in
68+
exit 0
6769
fi
6870
echo "No files were added"
6971
exit 0
@@ -80,7 +82,8 @@ jobs:
8082
else
8183
history_not_in=0
8284
fi
83-
exit $history_not_in
85+
#exit $history_not_in
86+
exit 0
8487
fi
8588
echo "No files were added"
8689
exit 0

0 commit comments

Comments
 (0)