Model/.github/workflows/integration_tests.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

38 lines
1.1 KiB
YAML

# Temporarily disabled — the rebaselining integration suite.
# Commented out to cut GitHub Actions minutes; uncomment to re-enable.
#
# name: Rebaselining Integration Test
#
# on:
# pull_request:
# branches:
# - main
#
# jobs:
# rebaselining-integration-test:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v4
#
# - name: Set up Python 3.11
# uses: actions/setup-python@v4
# with:
# python-version: '3.11'
#
# - name: Install tox via Makefile
# run: |
# make setup
#
# - name: Configure AWS credentials for dev
# uses: aws-actions/configure-aws-credentials@v1
# with:
# aws-access-key-id: ${{ secrets.DEV_AWS_ACCESS_KEY_ID }}
# aws-secret-access-key: ${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }}
# aws-region: eu-west-2
#
# - name: Run only rebaselining integration test
# env:
# EPC_AUTH_TOKEN: ${{ secrets.DEV_EPC_AUTH_TOKEN }}
# run: |
# make test ARGS="-m integration"