refactor: remove variables for s3 bucket prefixes access logs and con… #24
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Terraform Master Workflow | |
on: | |
push: | |
branches: | |
- main | |
- master | |
pull_request_target: | |
types: | |
- opened | |
- edited | |
- synchronize | |
pull_request: | |
branches: | |
- main | |
- master | |
jobs: | |
prTitlecheck: | |
name: PR title check | |
if: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.base.ref == 'main' }} | |
uses: ./.github/workflows/pr-title.yaml | |
preCommitCheck: | |
name: Terraform Checks | |
uses: ./.github/workflows/terraform-checks.yaml | |
generateDocs: | |
name: Generate Terraform Docs | |
needs: preCommitCheck | |
uses: ./.github/workflows/terraform-docs.yaml | |
release: | |
name: Release module | |
needs: generateDocs | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | |
uses: ./.github/workflows/release.yaml |