-
Notifications
You must be signed in to change notification settings - Fork 526
docs: add release process guide #9548
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
DrJKL
merged 4 commits into
Comfy-Org:main
from
christian-byrne:docs/release-process-guide
Mar 9, 2026
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
af9cb5b
docs: add release process guide
christian-byrne bd50533
docs: expand dual-homed explanation with no-divergence clarification
christian-byrne c3169f7
docs: condense release-process.md
christian-byrne 4591db6
Merge branch 'main' into docs/release-process-guide
DrJKL File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,62 @@ | ||
| # Release Process | ||
|
|
||
| ## Bump Types | ||
|
|
||
| All releases use `release-version-bump.yaml`. Effects differ by bump type: | ||
|
|
||
| | Bump | Target | Creates branches? | GitHub release | | ||
| |---|---|---|---| | ||
| | Minor | `main` | `core/` + `cloud/` for previous minor | Published, "latest" | | ||
| | Patch | `main` | No | Published, "latest" | | ||
| | Patch | `core/X.Y` | No | **Draft** (uncheck "latest") | | ||
| | Prerelease | any | No | Draft + prerelease | | ||
|
|
||
| **Minor bump** (e.g. 1.41→1.42): freezes the previous minor into `core/1.41` | ||
| and `cloud/1.41`, branched from the commit *before* the bump. Nightly patch | ||
| bumps on `main` are convenience snapshots — no branches created. | ||
|
|
||
| **Patch on `core/X.Y`**: publishes a hotfix draft release. Must not be marked | ||
| "latest" so `main` stays current. | ||
|
|
||
| ### Dual-homed commits | ||
|
|
||
| When a minor bump happens, unreleased commits appear in both places: | ||
|
|
||
| ``` | ||
| v1.40.1 ── A ── B ── C ── [bump to 1.41.0] | ||
| │ | ||
| └── core/1.40 | ||
| ``` | ||
|
|
||
| A, B, C become v1.41.0 on `main` AND sit on `core/1.40` (where they could | ||
| later ship as v1.40.2). Same commits, no divergence — the branch just prevents | ||
| 1.41+ features from mixing in so ComfyUI can stay on 1.40.x. | ||
|
|
||
| ## Backporting | ||
|
|
||
| 1. Add `needs-backport` + version label to the merged PR | ||
| 2. `pr-backport.yaml` cherry-picks and creates a backport PR | ||
| 3. Conflicts produce a comment with details and an agent prompt | ||
|
|
||
| ## Publishing | ||
|
|
||
| Merged PRs with the `Release` label trigger `release-draft-create.yaml`, | ||
| publishing to GitHub Releases (`dist.zip`), PyPI (`comfyui-frontend-package`), | ||
| and npm (`@comfyorg/comfyui-frontend-types`). | ||
|
|
||
| ## Bi-weekly ComfyUI Integration | ||
|
|
||
| `release-biweekly-comfyui.yaml` runs every other Monday — if the next `core/` | ||
| branch has unreleased commits, it triggers a patch bump and drafts a PR to | ||
| `Comfy-Org/ComfyUI` updating `requirements.txt`. | ||
|
|
||
| ## Workflows | ||
|
|
||
| | Workflow | Purpose | | ||
| |---|---| | ||
| | `release-version-bump.yaml` | Bump version, create Release PR | | ||
| | `release-draft-create.yaml` | Build + publish to GitHub/PyPI/npm | | ||
| | `release-branch-create.yaml` | Create `core/` + `cloud/` branches (minor/major) | | ||
| | `release-biweekly-comfyui.yaml` | Auto-patch + ComfyUI requirements PR | | ||
| | `pr-backport.yaml` | Cherry-pick fixes to stable branches | | ||
| | `cloud-backport-tag.yaml` | Tag cloud branch merges | | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add language specifier to fenced code block.
The fenced code block should include a language identifier for proper syntax highlighting and markdown compliance.
📝 Proposed fix
Verify each finding against the current code and only fix it if needed.
In
@docs/release-process.mdaround lines 51 - 53, Update the fenced code blocksurrounding the string "v1.40.1 ── A ── B ── C ── [bump to 1.41.0]" to include a
language specifier (e.g., use
text instead of), so the block ismarkdown-compliant and renders with proper syntax highlighting; change the
opening backticks only and keep the content and closing backticks unchanged.