Fixes update_on_create
for var.files
(#33)
#1
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: "Code Quality: Super-Linter" | |
on: | |
push: | |
jobs: | |
superlinter: | |
name: Super-Linter | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
with: | |
# Full git history is needed to get a proper list of changed files within `super-linter` | |
fetch-depth: 0 | |
- name: Lint Code with Super-Linter | |
uses: github/super-linter@v4 | |
env: | |
VALIDATE_ALL_CODEBASE: true | |
DEFAULT_BRANCH: "main" | |
DISABLE_ERRORS: false | |
TERRAFORM_TFLINT_CONFIG_FILE: ".tflint.hcl" | |
VALIDATE_BASH: true | |
VALIDATE_JSON: true | |
VALIDATE_MD: true | |
VALIDATE_TERRAFORM: true |