We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1d1235 commit 39de989Copy full SHA for 39de989
.github/workflows/pull_request.yaml
@@ -19,7 +19,7 @@ jobs:
19
20
- name: Validate SAM Templates
21
run: |
22
- for template in $(find . -name "*.yaml" -o -name "*.yml"); do
+ for template in $(find . -name "*.yaml" -o -name "*.yml" -not -path "./.github/*"); do
23
echo "Validating template: $template"
24
sam validate --template-file "$template" --region us-east-2 --lint
25
done
.github/workflows/release.yaml
@@ -1,10 +1,10 @@
1
-name: Build and Deploy Lambda
+name: Build and Deploy AWS Unified Firehose
2
3
on:
4
push:
5
branches:
6
- main
7
-
+
8
jobs:
9
build-and-deploy:
10
runs-on: ubuntu-latest
0 commit comments