yamllint/README.md

76 lines
1.8 KiB
Markdown
Raw Normal View History

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
Simple as:
```yaml
2020-11-08 12:54:33 -05:00
- uses: ibiqlik/action-yamllint@v3
```
2019-10-16 05:10:34 -04:00
### Optional parameters
- `config_file` - Path to custom configuration
- `config_data` - Custom configuration (as YAML source)
- `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`
2021-05-26 02:56:08 -04:00
- `format` - Format for parsing output `[parsable,standard,colored,github,auto] (default: parsable)`
- `strict` - Return non-zero exit code on warnings as well as errors `[true,false] (default: false)`
- `no_warnings` - Output only error level problems `[true,false] (default: false)`
2019-10-16 05:10:34 -04:00
2020-11-08 12:54:33 -05:00
**Note:** If `.yamllint` configuration file exists in your root folder, yamllint will automatically use it.
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:
2020-05-07 07:07:00 -04:00
- uses: actions/checkout@v1
2019-10-16 05:10:34 -04:00
- name: yaml-lint
2020-11-08 12:54:33 -05:00
uses: ibiqlik/action-yamllint@v3
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
```
Or just simply check all yaml files in the repository:
```yaml
name: Yaml Lint
on: [push]
jobs:
lintAllTheThings:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: yaml-lint
2020-11-08 12:54:33 -05:00
uses: ibiqlik/action-yamllint@v3
```
Config data examples:
```yaml
# Single line
config_data: "{extends: default, rules: {new-line-at-end-of-file: disable}}"
```
``` yaml
# Multi line
config_data: |
extends: default
rules:
new-line-at-end-of-file:
level: warning
trailing-spaces:
level: warning
```