Skip to content

fix(deploy): correctly categorize early deployment failures in notifi… #128

fix(deploy): correctly categorize early deployment failures in notifi…

fix(deploy): correctly categorize early deployment failures in notifi… #128

Workflow file for this run

name: YAML Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
yamllint:
runs-on: ubuntu-24.04
timeout-minutes: 5
steps:
- name: Checkout repository
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
- name: Run yamllint
run: yamllint --strict --config-file .yamllint .
- name: Report results
if: always()
run: |
if [ $? -eq 0 ]; then
echo "✅ All YAML files are properly formatted"
else
echo "❌ YAML formatting issues found"
echo "Please fix the issues above or update .yamllint configuration if needed"
fi