Merge main into release/MAPL-v3 to get hot fix #3483
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# Based on code from https://github.com/marketplace/actions/yaml-lint | |
name: Yaml Lint | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled] | |
# This validation is equivalent to running on the command line: | |
# yamllint -d relaxed --no-warnings | |
# and is controlled by the .yamllint.yml file | |
jobs: | |
validate-YAML: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- id: yaml-lint | |
name: yaml-lint | |
uses: ibiqlik/action-yamllint@v3 | |
with: | |
no_warnings: true | |
format: colored | |
config_file: .yamllint.yml | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: yamllint-logfile | |
path: ${{ steps.yaml-lint.outputs.logfile }} |