Skip to content

Delint

Delint #80

Workflow file for this run

---
name: Yaml Lint
on:
push:
paths:
- '**.yml'
- '**.yaml'
jobs:
lintAllTheThings:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: yaml-lint
uses: ibiqlik/action-yamllint@v3
with:
config_data: |
extends: default
rules:
truthy: disable
ignore: |
/automations.yaml
...