Skip to content

GitHub actions check #148

GitHub actions check

GitHub actions check #148

Workflow file for this run

name: Terraform Master Workflow
on:
push:
branches:
- main
pull_request_target:
types:
- opened
- edited
- synchronize
pull_request:
branches:
- main
permissions:
contents: write
pull-requests: write
actions: read
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

Check failure on line 29 in .github/workflows/terraform.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/terraform.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/terraform.yaml" -> "./.github/workflows/terraform-checks.yaml" : You have an error in your yaml syntax on line 88
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