Files
charts/githooks/pre-push/yaml-lint
Javier J. Salmeron Garcia b091fc863a Add githook to folder
2019-10-02 18:24:44 +03:00

29 lines
915 B
Bash
Executable File

#!/bin/bash
repo_path="$(git rev-parse --show-toplevel)"
current_branch="$(git rev-parse --abbrev-ref HEAD)"
origin_commit="$(git rev-parse --short "$(git merge-base master "$current_branch")")"
files_to_push="$(git diff --name-only "$origin_commit")"
# shellcheck source=../functions/libyamllint.sh
. "${repo_path}/githooks/functions/libyamllint.sh"
for chart_name in $( cut -d'/' -f1,2 <<< "$files_to_push" | uniq ); do
check_yaml_lint
# Avoid running 'yamllint' when modified dirs are not charts
if [[ $chart_name = bitnami/* ]]; then
printf '\033[01;33mLinting yaml of %s:\n\033[0m' "$chart_name"
if ! run_yaml_lint_chart "$chart_name"; then
failed=1
fi
fi
done
if [[ "$failed" = "1" ]]; then
printf '\033[0;31m\U0001F6AB YAML lint failed. Not pushing\n\n\033[0m'
else
printf '\033[0;32m\U00002705 YAML lint succeeded\n\n\033[0m'
fi
exit $failed