Public Access
c24050c7e3
Universal: Auto Version Bump / Version Bump (push) Has been cancelled
Platform: moko-platform CI / Gate 1: Code Quality (push) Has been cancelled
Platform: moko-platform CI / Gate 2: Unit Tests (8.1) (push) Has been cancelled
Platform: moko-platform CI / Gate 2: Unit Tests (8.2) (push) Has been cancelled
Platform: moko-platform CI / Gate 2: Unit Tests (8.3) (push) Has been cancelled
Platform: moko-platform CI / Gate 3: Self-Health Check (push) Has been cancelled
Platform: moko-platform CI / Gate 4: Governance (push) Has been cancelled
Platform: moko-platform CI / Gate 5: Template Integrity (push) Has been cancelled
Platform: moko-platform CI / CI Summary (push) Has been cancelled
- release_publish.php: new CLI — publishes release + copies for all lesser streams, updates all updates.xml streams, syncs to all branches - updates_xml_build.php: write single channel only (no cascade) - release_cascade.php: deprecated (no-op) - updates_xml_sync.php: add --all flag for auto-discovery - auto-bump.yml: remove alpha/beta/rc triggers, add patch/* - auto-release.yml: thin CLI wrappers for promote-rc and release jobs - version_auto_bump.php: all branches get patch bumps, add patch/* Authored-by: Moko Consulting Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
18 lines
540 B
PHP
18 lines
540 B
PHP
#!/usr/bin/env php
|
|
<?php
|
|
/* Copyright (C) 2026 Moko Consulting <hello@mokoconsulting.tech>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* FILE INFORMATION
|
|
* DEFGROUP: moko-platform.CLI
|
|
* INGROUP: moko-platform
|
|
* REPO: https://git.mokoconsulting.tech/MokoConsulting/moko-platform
|
|
* PATH: /cli/release_cascade.php
|
|
* VERSION: 02.00.00
|
|
* BRIEF: DEPRECATED — cascade behavior removed. Each release stream is independent.
|
|
*/
|
|
|
|
echo "release_cascade.php: No-op (cascade behavior removed — each stream is independent)\n";
|
|
exit(0);
|