We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c389da6 + 3da9369 commit 31d5c47Copy full SHA for 31d5c47
.github/workflows/cfn-validate-pr.yaml
@@ -2,6 +2,7 @@ name: Validate CloudFormation on PR
2
3
on:
4
pull_request:
5
+ types: [opened, synchronize, closed]
6
paths:
7
- 'cloudformation/**'
8
@@ -47,6 +48,10 @@ jobs:
47
48
runs-on: ubuntu-latest
49
if: ${{ github.event.pull_request.merged == true }}
50
steps:
51
+ - name: Log PR merged status
52
+ run: |
53
+ echo "PR merged: ${{ github.event.pull_request.merged }}"
54
+
55
- name: Configure AWS credentials
56
uses: aws-actions/configure-aws-credentials@v4
57
with:
cloudformation/s3-bucket.yaml
@@ -19,7 +19,7 @@ Resources:
19
- Key: Environment
20
Value: !Ref Environment
21
- Key: Project
22
- Value: GitHubActionsTestingPR
+ Value: GitHubActionsTestingPRCICD
23
24
Outputs:
25
BucketName:
0 commit comments