yamllint/README.md

106 lines
2.5 KiB
Markdown
Raw Normal View History

2019-10-16 11:10:34 +02:00
# GitHub YAMLlint
This action executes `yamllint` (https://github.com/adrienverge/yamllint) against file(s) or folder
## Usage
Simple as:
```yaml
2020-11-08 18:54:33 +01:00
- uses: ibiqlik/action-yamllint@v3
```
2021-08-10 19:47:03 +02:00
### Optional input parameters
2019-10-16 11:10:34 +02:00
- `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 08:56:08 +02: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 11:10:34 +02:00
2020-11-08 18:54:33 +01:00
**Note:** If `.yamllint` configuration file exists in your root folder, yamllint will automatically use it.
2021-08-10 19:47:03 +02:00
### Outputs
`logfile` - Path to yamllint log file
`${{ steps.<step>.outputs.logfile }}`
2019-10-16 11:10:34 +02:00
### Example usage in workflow
```yaml
2021-08-14 20:19:03 +02:00
---
2019-10-16 11:10:34 +02:00
name: Yaml Lint
2021-08-14 20:19:03 +02:00
on: [push] # yamllint disable-line rule:truthy
2019-10-16 11:10:34 +02:00
jobs:
lintAllTheThings:
runs-on: ubuntu-latest
steps:
2021-08-14 20:19:03 +02:00
- uses: actions/checkout@v1
- name: yaml-lint
uses: ibiqlik/action-yamllint@v3
with:
file_or_dir: myfolder/*values*.yaml
config_file: .yamllint.yml
2019-10-16 11:10:34 +02:00
```
Or just simply check all yaml files in the repository:
```yaml
2021-08-14 20:19:03 +02:00
---
name: Yaml Lint
2021-08-14 20:19:03 +02:00
on: [push] # yamllint disable-line rule:truthy
jobs:
lintAllTheThings:
runs-on: ubuntu-latest
steps:
2021-08-14 20:19:03 +02:00
- uses: actions/checkout@v1
- name: yaml-lint
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
```
2021-08-10 19:47:03 +02:00
Use output to save/upload the log in artifact. Note, you must have `id` in the step running the yamllint action.
```yaml
2021-08-14 20:19:03 +02:00
---
2021-08-10 19:47:03 +02:00
name: Yaml Lint
2021-08-14 20:19:03 +02:00
on: [push] # yamllint disable-line rule:truthy
2021-08-10 19:47:03 +02:00
jobs:
lintAllTheThings:
runs-on: ubuntu-latest
steps:
2021-08-14 20:19:03 +02:00
- uses: actions/checkout@v1
- id: yaml-lint
uses: ibiqlik/action-yamllint@v3
2021-08-10 19:47:03 +02:00
2021-08-14 20:19:03 +02:00
- run: echo ${{ steps.yaml-lint.outputs.logfile }}
2021-08-10 19:47:03 +02:00
2021-08-14 20:19:03 +02:00
- uses: actions/upload-artifact@v2
with:
name: yamllint-logfile
path: ${{ steps.yaml-lint.outputs.logfile }}
2021-08-10 19:47:03 +02:00
```