10 lines
144 B
Bash
Executable File
10 lines
144 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Processing event '$GITHUB_EVENT_NAME'"
|
|
echo "List of files no has license:"
|
|
echo "Start"
|
|
|
|
/app/addlicense -check .
|
|
|
|
echo "End"
|