Skip to content

Commit

Permalink
Update yaml-lint.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Strong-Foundation <179532304+Strong-Foundation@users.noreply.github.com>
  • Loading branch information
Strong-Foundation authored Dec 24, 2024
1 parent a68c523 commit a7a6409
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/yaml-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ jobs:
uses: ibiqlik/action-yamllint@v3
with: # Provides additional configuration to the yamllint action
# Lint all YAML files with both '.yaml' and '.yml' extensions in the repository, including subdirectories
file_or_dir: "**/*.yaml **/*.yml"
# Specifies the output format to be GitHub-friendly annotations for easier viewing in the GitHub UI
file_or_dir: "**/*.yaml" # Lint files with the '.yaml' extension in all subdirectories
format: "github" # Specifies the output format to be GitHub-friendly annotations for easier viewing in the GitHub UI

# Lint all .yml files, including files in subdirectories
- name: Lint all YML files
uses: ibiqlik/action-yamllint@v3
with:
file_or_dir: "**/*.yml" # Lint files with the '.yml' extension in all subdirectories
format: "github"

0 comments on commit a7a6409

Please sign in to comment.