mirror of
https://github.com/kilyabin/psysonic.git
synced 2026-07-22 06:25:41 +00:00
bf38288feb
* ci(release): split channel pipelines and automate version transitions Introduce dedicated next/release orchestration workflows backed by a reusable publish pipeline with RC/final package version updates and post-release main dev bump PRs. Add a strict release process SOP with RC freeze, hotfix override, and mandatory backport rules. * ci(release): gate main-to-next promotion on green CI Add a dedicated workflow that validates main branch checks/statuses and block the promote-main-to-next flow unless main is green. Update the release SOP to reflect the enforced pre-promotion validation. * ci(release): fix channel promotion edge cases and policy gaps Switch channel promotions to reset-based snapshots with force-with-lease pushes, stop auto-merging channel nix-refresh PRs, and guard main dev bump against version downgrades. Add RC changelog fallback, require AUR release updates in SOP, and extend npmDepsHash sync to main/next/release pushes. * docs(release): clarify backport and nix refresh survivability rules Require RC fix backports to reach main before the next main-to-next promotion, and document that channel-local nix refresh PRs are advisory unless equivalent changes are merged into main.
19 lines
347 B
YAML
19 lines
347 B
YAML
name: Next Channel
|
|
|
|
on:
|
|
push:
|
|
branches: [next]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
publish-next:
|
|
uses: ./.github/workflows/reusable-channel-publish.yml
|
|
with:
|
|
channel: next
|
|
source_ref: ${{ github.ref_name }}
|
|
target_branch: next
|
|
prerelease: true
|
|
draft_release: false
|
|
verify_nix: true
|
|
secrets: inherit
|