This commit is contained in:
aleksandr.vodyanov
2024-05-17 17:42:27 +03:00
parent 02dd5dc148
commit 0bfad9e9e0

View File

@@ -11,4 +11,6 @@
echo "Processing event '$GITHUB_EVENT_NAME'" echo "Processing event '$GITHUB_EVENT_NAME'"
echo "List of files with absent license:" echo "List of files with absent license:"
echo "===================================" echo "==================================="
echo /app/addlicense -check "$1" "$INPUT_INPUT_FILES" | sh for file in $INPUST_INPUT_FILES; do
echo /app/addlicense -check "$1" $file | sh
done