6 lines
119 B
Bash
Executable file
6 lines
119 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Check if in a Pull Request
|
|
if [ "$TRAVIS_EVENT_TYPE" = "pull_request" ]; then
|
|
exit 0
|
|
fi
|
|
exit 1
|