This repository has been archived by the owner on Jan 2, 2024. It is now read-only.
Terraform format & plan #3220
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: Terraform format & plan | |
on: | |
pull_request: | |
branches: [master] | |
paths-ignore: ['terraform/**'] | |
merge_group: | |
types: [checks_requested] | |
jobs: | |
terraform_format: | |
name: 'Terraform format' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Do nothing | |
run: echo 'Nothing to be done, passing checks.' | |
terraform_plan: | |
name: 'Terraform plan' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Do nothing | |
run: echo 'Nothing to be done, passing checks.' |