Skip to content

Commit beddf94

Browse files
fix: use PR instead of direct push to main for green-path version pin
1 parent 5b5dd12 commit beddf94

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.claude/skills/dogfood/SKILL.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -287,12 +287,14 @@ If the entire dogfooding session finds **zero bugs**, the release is validated.
287287
288288
1. In the codegraph repo (not the temp dir), edit `package.json` `optionalDependencies` to pin all `@optave/codegraph-*` packages to `$ARGUMENTS`.
289289
2. 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
298300
This signals that v$ARGUMENTS has been manually verified end-to-end.

0 commit comments

Comments
 (0)