From 92424d9c2106b8388d8c237034790dc28f34522e Mon Sep 17 00:00:00 2001 From: Mobsuccess Bot Date: Fri, 3 Feb 2023 10:58:27 +0000 Subject: [PATCH] Add yamllint.yml GitHub workflow --- .github/workflows/yamllint.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 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..f782e10 --- /dev/null +++ b/.github/workflows/yamllint.yml @@ -0,0 +1,29 @@ +# DO NOT EDIT: BEGIN +# This snippet has been inserted automatically by mobsuccessbot, do not edit! +# If changes are needed, update the action yamllint in +# https://github.com/mobsuccess-devops/github-mobsuccess-policy +name: Validate-YAML + +on: + push: + branches: [master, preprod, prod] + pull_request: + types: [opened, synchronize, reopened] + +jobs: + validate-yaml: + name: Validate YAML files + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Validate YAML files + run: | + if [ -f .yamllint.yml ]; then + yamllint -c .yamllint.yml . + elif [ -f .gitignore ]; then + yamllint -d "{extends: relaxed, ignore-from-file: [.gitignore]}" . + else + yamllint -d relaxed . + fi + +# DO NOT EDIT: END