File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -287,12 +287,14 @@ If the entire dogfooding session finds **zero bugs**, the release is validated.
287287
2882881. In the codegraph repo (not the temp dir), edit `package.json` `optionalDependencies` to pin all `@optave/codegraph-*` packages to `$ARGUMENTS`.
2892892. Run `npm install` to update the lockfile.
290- 3. Commit and push directly to main :
290+ 3. Create a PR to update the native binary pins :
291291 ```bash
292- git checkout main
292+ git checkout -b chore/pin-native-binaries-v$ARGUMENTS main
293293 git add package.json package-lock.json
294294 git commit -m "chore: pin native binaries to v$ARGUMENTS after clean dogfood"
295- git push origin main
295+ gh pr create --base main \
296+ --title "chore: pin native binaries to v$ARGUMENTS" \
297+ --body "Validated in dogfooding session — zero bugs found."
296298 ```
297299
298300This signals that v$ARGUMENTS has been manually verified end-to-end.
You can’t perform that action at this time.
0 commit comments