Remove jita81 as an external collaborator which is causing issues wit… #136
Workflow file for this run
This file contains 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: "Push Checks" | |
on: | |
push: | |
branches-ignore: | |
- main | |
paths: | |
- "**/*.tf" | |
jobs: | |
push: | |
name: "On Terraform Push" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: hashicorp/setup-terraform@v1 | |
with: | |
terraform_version: ${{ secrets.TERRAFORM_VERSION }} | |
- name: "Terraform Format" | |
id: fmt | |
run: terraform fmt -recursive | |
continue-on-error: true |