From b879df9acecd3db4646908398fb641c72b123e95 Mon Sep 17 00:00:00 2001 From: Vyacheslav Rybalchenko Date: Sat, 20 Apr 2024 15:59:30 +0300 Subject: [PATCH] feat(objectionary#3035): add yamllint gh action template --- .github/workflows/yamllint.yml | 15 +++++++++++++++ 1 file changed, 15 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 0000000000..a6b72168bc --- /dev/null +++ b/.github/workflows/yamllint.yml @@ -0,0 +1,15 @@ +--- +name: yamllint +'on': + push: + branches: + - master + pull_request: + branches: + - master +jobs: + yamllint: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v4 + - uses: ibiqlik/action-yamllint@v3