@@ -83,8 +83,8 @@ agent = Agent(model=Gemini(model="gemini-2.5-flash"))
8383
8484| Branch | Role |
8585| -------------------| ------|
86- | ` feature/base-url ` | Integration branch — the base_url patch with upstream ** merged in** . |
87- | ` stable ` | What consumers pin. Only ever advances to a green ` feature/base-url ` . |
86+ | ` main ` | Integration branch — the base_url patch with upstream ** merged in** . |
87+ | ` stable ` | What consumers pin. Only ever advances to a green ` main ` . |
8888
8989There is no ` upstream ` remote in the repo; the automation adds it on the fly.
9090The patch is carried by ** merging upstream in** (not rebasing) so history is
@@ -95,10 +95,10 @@ never rewritten and `@stable` pins never shift unexpectedly.
9595[ ` .github/workflows/auto-sync.yml ` ] ( .github/workflows/auto-sync.yml ) runs every
9696Monday (and on demand via * Actions → auto-sync-upstream → Run workflow* ):
9797
98- 1 . Merge ` upstream/main ` into ` feature/base-url ` .
98+ 1 . Merge ` upstream/main ` into ` main ` .
99992 . ** Merge conflicts** → stop, open an ` auto-sync ` issue, leave ` stable ` as-is.
1001003 . Clean merge → install and run the model test suite.
101- 4 . ** Tests pass** → push ` feature/base-url ` and fast-forward ` stable ` to it.
101+ 4 . ** Tests pass** → push ` main ` and fast-forward ` stable ` to it.
102102 This is the new baseline; ` @stable ` consumers pick it up automatically.
1031035 . ** Tests fail** → stop, open an ` auto-sync ` issue, leave ` stable ` as-is.
104104
@@ -113,14 +113,14 @@ When the `auto-sync` issue appears:
113113``` bash
114114./scripts/update-fork.sh # merges upstream, runs tests locally
115115# resolve the conflict / fix the failing test, then:
116- git push origin feature/base-url
117- git push origin feature/base-url :stable # fast-forward stable once green
116+ git push origin main
117+ git push origin main :stable # fast-forward stable once green
118118```
119119
120120Optionally snapshot a release: ` git tag -a fork-vX.Y.Z -m "..." && git push origin fork-vX.Y.Z ` .
121121
122122### CI
123123
124124[ ` .github/workflows/fork-ci.yml ` ] ( .github/workflows/fork-ci.yml ) additionally
125- runs the model tests on every push to ` feature/base-url ` , so manual pushes are
125+ runs the model tests on every push to ` main ` , so manual pushes are
126126checked too.
0 commit comments