We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46c7e20 commit a2b78d3Copy full SHA for a2b78d3
.github/workflows/cfn-validate-pr.yaml
@@ -15,7 +15,7 @@ permissions:
15
jobs:
16
validate-cfn:
17
runs-on: ubuntu-latest
18
- if: ${{ github.event.pull_request.merged != true }}
+ if: ${{ github.event_name == 'pull_request' && github.event.action != 'closed' }}
19
steps:
20
- uses: actions/checkout@v4
21
cloudformation/s3-bucket.yaml
@@ -19,7 +19,7 @@ Resources:
- Key: Environment
Value: !Ref Environment
- Key: Project
22
- Value: GitHubActionsTestingPRCICD-3
+ Value: GitHubActionsTestingPRCICD-4
23
24
Outputs:
25
BucketName:
0 commit comments