Skip to content

Disable github workflows #228

Disable github workflows

Disable github workflows #228

Workflow file for this run

# name: 'Terraform'
# on:
# push:
# branches:
# - master
# paths:
# - '**/**/**/terraform.tf'
# pull_request:
# paths:
# - '**/**/**/terraform.tf'
# jobs:
# terraform:
# name: 'Terraform'
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v2
# - name: Setup Terraform
# uses: hashicorp/setup-terraform@v2
# with:
# cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }}
# - name: Terraform Init
# run: terraform init
# - name: Terraform Format
# run: terraform fmt -check
# - name: Terraform Plan
# run: terraform plan
# - name: Terraform Apply
# if: github.ref == 'refs/heads/master' && github.event_name == 'push'
# run: terraform apply -auto-approve