Skip validation of AWS playbooks

Linter shows long list of rules violation while going through the AWS
playbooks. AWS automation is out of scope for this PR. To enable correct
Git Hook behavior I limited the check scope to site.yml only.
This commit is contained in:
Aleskey Zalesov 2018-03-02 14:50:40 +03:00
parent 510b81fa9c
commit 66dce03154
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ RESULT=$?
if [[ $RESULT == 0 ]]; then if [[ $RESULT == 0 ]]; then
echo "Running Ansible linter" echo "Running Ansible linter"
ansible-lint *.yml ansible-lint site.yml
RESULT=$? RESULT=$?
fi fi