Update upgrade command in preparation for release (#1868) #719
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: Run pre-commit | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
- release/\d{4}.\d{1,2}.\d{1,2} | |
pull_request: | |
jobs: | |
pre-commit: | |
if: github.event.pull_request.merged == false | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- name: Checkout repository 🔔 | |
uses: actions/checkout@v3 | |
- name: Run terraform pre-commit ⚡️ | |
uses: pre-commit/action@v3.0.0 | |
with: | |
extra_args: --all-files terraform_fmt |