From d21f87f42cfcd9b1ce68fdf1ff51f6dac1cbcc55 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sun, 30 Mar 2025 00:52:31 -0600 Subject: [PATCH] fix: update template file extension in validation workflow - Changed the expected template file from 'template.yml' to 'template.toml' in the GitHub Actions validation workflow to reflect recent changes in file format. --- .github/workflows/validate.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index dfdd0e3..cb8f737 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -28,7 +28,7 @@ jobs: TEMPLATE_NAME=$(basename "$dir") COMPOSE_FILE="$dir/docker-compose.yml" - TEMPLATE_FILE="$dir/template.yml" + TEMPLATE_FILE="$dir/template.toml" if [ ! -f "$COMPOSE_FILE" ]; then echo "❌ Missing docker-compose.yml in $TEMPLATE_NAME" @@ -36,7 +36,7 @@ jobs: fi if [ ! -f "$TEMPLATE_FILE" ]; then - echo "❌ Missing template.yml in $TEMPLATE_NAME" + echo "❌ Missing template.toml in $TEMPLATE_NAME" ERROR=1 fi fi