Skip to content

ci: stop e2e blaming PRs for the base branch's specs and for cancellations #3835

ci: stop e2e blaming PRs for the base branch's specs and for cancellations

ci: stop e2e blaming PRs for the base branch's specs and for cancellations #3835

# Description: Validates YAML syntax and style using yamllint with relaxed rules
name: 'CI: YAML Validation'
on:
push:
branches:
- main
paths:
- '**/*.yml'
- '**/*.yaml'
pull_request:
paths:
- '**/*.yml'
- '**/*.yaml'
jobs:
yaml-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Install yamllint
run: |
python -m pip install --upgrade pip
python -m pip install yamllint
- name: Validate YAML syntax and style
run: ./scripts/cicd/check-yaml.sh
- name: Check ComfyUI container versions
run: ./scripts/cicd/check-comfyui-container-version.sh