learning_ai_common_plat/.github/workflows/disabled.yml
saravanakumardb1 a383b245e5 ci: disable GitHub Actions and add manual quality checks
- Disable CI workflows due to billing issues
- Add quick-check.sh script for 5-min pre-push validation
- Add MANUAL_CI.md with comprehensive instructions
- Update README with CI disabled notice
- Production readiness workflow updated with manual check note
2026-02-12 23:13:07 -08:00

23 lines
552 B
YAML

# GitHub Actions temporarily disabled due to billing issues
#
# To re-enable: rename this file back to ci.yml
#
# For manual quality checks, see: MANUAL_CI.md
name: Disabled - CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
disabled:
runs-on: ubuntu-latest
steps:
- name: CI Disabled
run: |
echo "GitHub Actions are temporarily disabled."
echo "Please run manual quality checks using the workflows in .windsurf/workflows/"
echo "See MANUAL_CI.md for instructions."