2019-10-16 05:10:34 -04:00
|
|
|
# GitHub YAMLlint
|
|
|
|
|
|
|
|
This action executes `yamllint` (https://github.com/adrienverge/yamllint) against file(s) or folder
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
### Optional parameters
|
|
|
|
|
|
|
|
- `config_file` - Path to custom configuration
|
|
|
|
- `config_data` - Custom configuration (as YAML source)
|
2020-01-08 02:23:41 -05:00
|
|
|
- `file_or_dir` - Enter file/folder (space separated), wildcards accepted. Examples:
|
|
|
|
- `.` - run against all yaml files in a directory recursively (default)
|
|
|
|
- `file1.yaml`
|
|
|
|
- `file1.yaml file2.yaml`
|
|
|
|
- `kustomize/**/*.yaml mychart/*values.yaml`
|
2020-02-28 04:14:09 -05:00
|
|
|
- `format` - Format for parsing output [parsable,standard,colored,auto] (default: colored)
|
2019-12-17 08:15:23 -05:00
|
|
|
- `strict` - Return non-zero exit code on warnings as well as errors [true,false]
|
2019-10-16 05:10:34 -04:00
|
|
|
|
|
|
|
### Example usage in workflow
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
name: Yaml Lint
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
|
|
lintAllTheThings:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
|
|
|
- name: yaml-lint
|
2020-02-28 04:14:09 -05:00
|
|
|
uses: ibiqlik/action-yamllint@v1
|
2019-10-16 05:10:34 -04:00
|
|
|
with:
|
2019-12-17 08:15:23 -05:00
|
|
|
file_or_dir: myfolder/*values*.yaml
|
2019-10-16 05:10:34 -04:00
|
|
|
config_file: .yamllint.yml
|
|
|
|
```
|
2020-01-08 02:23:41 -05:00
|
|
|
|
|
|
|
Or just simply check all yaml files in the repository:
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
name: Yaml Lint
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
|
|
lintAllTheThings:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-02-28 04:14:09 -05:00
|
|
|
- uses: actions/checkout@v1
|
2020-01-08 02:23:41 -05:00
|
|
|
- name: yaml-lint
|
|
|
|
uses: ibiqlik/action-yamllint@master
|
|
|
|
```
|