From b79ba40c672bb6c1ee920a9571b5a964b7979a0e Mon Sep 17 00:00:00 2001 From: voorepreethi Date: Tue, 12 Nov 2024 18:49:12 +0530 Subject: [PATCH] ci: updated pr workflow --- .github/workflows/pull_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yaml b/.github/workflows/pull_request.yaml index 7ab1651..19b809e 100644 --- a/.github/workflows/pull_request.yaml +++ b/.github/workflows/pull_request.yaml @@ -19,7 +19,7 @@ jobs: - name: Validate SAM Templates run: | - for template in $(find . -name "*.yaml" -o -name "*.yml" -not -path "./.github/*"); do + for template in $(find . -name "*.yaml" -o -name "*.yml" -not -path ".github/*"); do echo "Validating template: $template" sam validate --template-file "$template" --region us-east-2 --lint done