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