mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-07-12 13:29:04 +00:00
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>
20 lines
516 B
YAML
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
|