2021-05-15 14:30:13 +00:00
|
|
|
name: ❄️ YAML Lint
|
2020-05-24 21:48:15 +00:00
|
|
|
|
2023-01-05 10:56:27 +00:00
|
|
|
on:
|
|
|
|
pull_request:
|
2023-01-15 16:05:57 +00:00
|
|
|
paths:
|
|
|
|
- '**.yaml'
|
2023-01-05 10:56:27 +00:00
|
|
|
workflow_dispatch:
|
2020-05-24 21:48:15 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-05-25 11:52:12 +00:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Yamllint
|
2023-03-20 06:02:55 +00:00
|
|
|
uses: karancode/yamllint-github-action@v2.1.1
|
2020-05-25 11:52:12 +00:00
|
|
|
with:
|
|
|
|
yamllint_config_filepath: .yamllint
|
|
|
|
yamllint_strict: false
|
|
|
|
yamllint_comment: true
|