26 lines
643 B
Bash
Executable File
26 lines
643 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright (c) AVROID, Ltd., 2024
|
|
#
|
|
# You can not use the contents of the file in any way without
|
|
# AVROID, Ltd. written permission.
|
|
#
|
|
# To obtain such a permit, you should contact AVROID, Ltd.
|
|
# at https://avroid.ru
|
|
|
|
echo "Processing event '$GITHUB_EVENT_NAME'"
|
|
echo "List of files with absent license:"
|
|
echo "==================================="
|
|
IFS=' '
|
|
if [ -n "$INPUT_INPUT_FILES" ]; then
|
|
err=0
|
|
for file in $INPUT_INPUT_FILES; do
|
|
echo /app/addlicense -check "$1" "$file" | sh
|
|
if [ $? -ne 0 ]; then
|
|
err=1
|
|
fi
|
|
done
|
|
exit $err
|
|
else
|
|
echo /app/addlicense -check "$1" "." | sh
|
|
fi
|