Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions .github/workflows/super-linter-non-slim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,6 @@ on:
"Will parse the entire repository and find all files to validate
across all types. NOTE: When set to false, only new or edited files
will be parsed for validation."
VALIDATE_KUBERNETES_KUBEVAL:
required: false
type: boolean
default: false
description: >
"Enable kubeval validation for Kubernetes manifests."

jobs:
build:
Expand Down Expand Up @@ -69,7 +63,7 @@ jobs:
VALIDATE_ALL_CODEBASE: "${{ inputs.VALIDATE_ALL_CODEBASE }}"
VALIDATE_JSCPD: false
VALIDATE_NATURAL_LANGUAGE: false
VALIDATE_KUBERNETES_KUBEVAL: "${{ inputs.VALIDATE_KUBERNETES_KUBEVAL }}"
VALIDATE_KUBERNETES_KUBEVAL: false
YAML_CONFIG_FILE: yaml/.yaml-lint.yml
TERRAFORM_TFLINT_CONFIG_FILE: terraform/.tflint.hcl
SQLFLUFF_CONFIG_FILE: sqlfluff/.sqlfluff-lint
8 changes: 1 addition & 7 deletions .github/workflows/super-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,6 @@ on:
"Will parse the entire repository and find all files to validate
across all types. NOTE: When set to false, only new or edited files
will be parsed for validation."
VALIDATE_KUBERNETES_KUBEVAL:
required: false
type: boolean
default: false
description: >
"Enable kubeval validation for Kubernetes manifests."

jobs:
build:
Expand Down Expand Up @@ -82,7 +76,7 @@ jobs:
VALIDATE_ALL_CODEBASE: "${{ inputs.VALIDATE_ALL_CODEBASE }}"
VALIDATE_JSCPD: false
VALIDATE_NATURAL_LANGUAGE: false
VALIDATE_KUBERNETES_KUBEVAL: "${{ inputs.VALIDATE_KUBERNETES_KUBEVAL }}"
VALIDATE_KUBERNETES_KUBEVAL: false
YAML_CONFIG_FILE: yaml/.yaml-lint.yml
TERRAFORM_TFLINT_CONFIG_FILE: terraform/.tflint.hcl
SQLFLUFF_CONFIG_FILE: sqlfluff/.sqlfluff-lint
9 changes: 0 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,6 @@ Add a new workflow file like [this one](.github/workflows/lint.yml) or add the f
uses: "riege/code-quality/.github/workflows/super-linter.yml@v1.0.0"
```

Optional input to enable kubeval for Kubernetes manifests:

```yaml
call-lint-workflow:
uses: "riege/code-quality/.github/workflows/super-linter.yml@v1.0.0"
with:
VALIDATE_KUBERNETES_KUBEVAL: true
```

## Terraform

The workflow `terraform.yml` is intended for repositories consisting of Terraform files only. It's small and fast and properly checks Terraform configurations.
Expand Down