feat: introduce develop branch as integration branch#23
Merged
Conversation
Establishes a develop/main branch model where main always equals the latest published release and develop accumulates changes between releases. - validate.yml: trigger on push/PR to both develop and main - release-drafter.yml: track pushes to develop for release note accumulation - publish-release skill: updated flow — bump on develop, open develop→main PR, merge, tag main, push tag to trigger release pipeline - CONTRIBUTING.md: document branch model and updated release process - CLAUDE.md: update git workflow section to reference develop as base branch Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Establishes the develop/main branch model so
mainalways equals the latest published release.Branch model
maindevelopfeature/*etc.developChanges
validate.yml— triggers on push/PR to bothdevelopandmainrelease-drafter.yml— tracks pushes todevelopso release notes accumulate as PRs mergepublish-releaseskill — updated flow: bump version ondevelop→ opendevelop→mainPR → user merges → tagmain→ push tag → release pipeline firesCONTRIBUTING.md— branch model table + updated release process sectionCLAUDE.md— git workflow section updated to referencedevelopas the base branchAfter merging this PR
Two manual steps to complete the setup:
Create the
developbranch from main:Set
developas the default branch (GitHub → Settings → Branches → Default branch →develop)Update branch protection:
develop: require PR + status checks (Lint, Formula Audit, Integration Test, Commit Lint)main: require PR, no direct pushes🤖 Generated with Claude Code