Model/.github/workflows/protect_releases.yml
Workflow config file is invalid. Please check your config file: EOF
Jun-te Kim c49682658a ci: disable integration/deploy/protect workflows (Actions minutes)
Comment out the remaining workflows to cut GitHub Actions usage, per request:
- integration_tests.yml — rebaselining integration suite (PRs to main)
- deploy_fastapi_backend.yml — FastAPI backend deploy (push to dev/prod);
  deploys must be run manually via `sls deploy` while disabled
- protect_releases.yml — main→dev PR-source guardrail

Fully commented (not deleted) so each restores by uncommenting.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-24 07:56:42 +00:00

20 lines
516 B
YAML

# Temporarily disabled — the main→dev PR-source guardrail.
# Commented out to cut GitHub Actions minutes; uncomment to re-enable.
#
# name: Restrict PR source
#
# on:
# pull_request:
# branches:
# - dev
#
# jobs:
# check-source-branch:
# runs-on: ubuntu-latest
# steps:
# - name: Fail if PR is not from main
# run: |
# if [[ "${{ github.head_ref }}" != "main" ]]; then
# echo "Only PRs from main are allowed into dev"
# exit 1
# fi