Skip to content

feat: Add stack removal detection, actionlint validation, and workflow improvements #134

feat: Add stack removal detection, actionlint validation, and workflow improvements

feat: Add stack removal detection, actionlint validation, and workflow improvements #134

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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.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