This repository has been archived by the owner on Nov 29, 2024. It is now read-only.
Updates for Karpenter 0.34.x using v1beta1 APIs (#11) #19
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
name: Yaml Lint | |
on: [push] | |
concurrency: | |
group: ${{ github.event_name == 'pull_request' && format('pr-{0}', github.event.number) || github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' && github.ref_type != 'tag' }} | |
jobs: | |
lintAllTheThings: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: yaml-lint | |
uses: ibiqlik/action-yamllint@v3 | |
with: | |
file_or_dir: index.yaml | |
config_data: "{extends: default, rules: {new-line-at-end-of-file: disable, document-start: disable, line-length: {max: 200}, trailing-spaces: disable}}" |