15 lines
445 B
Bash
Executable File
15 lines
445 B
Bash
Executable File
#!/bin/sh -l
|
|
# Copyright Avroid, Ltd. 2023-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 "Triggering event: '$GITHUB_EVENT_NAME'"
|
|
echo "Linting changed groovy files:"
|
|
echo "====================================="
|
|
echo /usr/local/bin/npm-groovy-lint "$INPUT_INPUT_FLAGS" "$INPUT_INPUT_FILES" | sh
|
|
|