From 4d01104f20bcaec2ce92e2d78541299e137a6fd6 Mon Sep 17 00:00:00 2001 From: Bastian Schmidt Date: Tue, 9 Apr 2024 08:36:01 +0200 Subject: [PATCH] Add yamllint GitHub action Integrate the following yamllint GitHub action as it seems well maintained. It lints all yaml files in the repo: https://github.com/marketplace/actions/yaml-lint --- .github/workflows/yamllint.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/yamllint.yml diff --git a/.github/workflows/yamllint.yml b/.github/workflows/yamllint.yml new file mode 100644 index 0000000..b565bee --- /dev/null +++ b/.github/workflows/yamllint.yml @@ -0,0 +1,11 @@ +--- +name: Yaml Lint +on: [push] # yamllint disable-line rule:truthy +jobs: + lintAllTheThings: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: yaml-lint + uses: ibiqlik/action-yamllint@v3 +