- 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
23 lines
552 B
YAML
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."
|