diff --git a/.github/workflows/check_yaml_name.yml b/.github/workflows/check_yaml_name.yml index 2d56c1c..8860858 100644 --- a/.github/workflows/check_yaml_name.yml +++ b/.github/workflows/check_yaml_name.yml @@ -19,6 +19,7 @@ jobs: find . -type f \( -name "docker-compose.yaml" -or -name "docker-compose.yml" \) | while read -r file; do if ! grep -qP '^name:\s[a-z0-9_-]*$' "$file"; then echo "There is a problem with the value of name in the submitted yaml, please make sure the value is in the range [a-z0-9_-]. And error file name:$file" + cat $file exit 1 fi done