647a26eefd
Merge to Main - Full Pipeline / Stage 1: Fast Gates (push) Failing after 3s
Merge to Main - Full Pipeline / Stage 2: Critical Gates (push) Has been skipped
Merge to Main - Full Pipeline / Stage 3: Integration Tests (push) Has been skipped
Merge to Main - Full Pipeline / Stage 4: Build and Package (push) Has been skipped
Merge to Main - Full Pipeline / Stage 5: Deploy to Production (push) Has been skipped
Merge to Main - Full Pipeline / Pipeline Summary (push) Successful in 1s
Reorganized .gitea/workflows/ to reduce duplication and noise: - Archived 7 unnecessary workflows to .archived/ subdirectory: - auto_backup_schedule.yml - backup.yml - calibration_backlog.yml - kis_data_collection.yml - qualitative_sell_strategy.yml - snapshot_admin.yml - wbs_9_3_null_policy_ci_gate.yml Active workflows (5 total): - merge-to-main.yml (SSOT 5-stage pipeline) - ci.yml (PR validation) - deploy-prod.yml (manual deployment) - fast-validation.yml (PR fast checks) - _common/build-and-test.yml (reusable component) Rationale: Phase 2 deployment infrastructure is complete. Legacy workflows are no longer needed, reducing CI/CD maintenance burden and improving clarity. Archived workflows remain available for reference if rollback is needed. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
16 lines
256 B
YAML
16 lines
256 B
YAML
name: backup
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
workflow_dispatch: {}
|
|
|
|
jobs:
|
|
backup:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Run backup
|
|
run: python tools/backup_data_feed_and_databases_v1.py
|
|
|