| name | ovstorage-contributor-verify-before-merge |
| description | Use before opening or merging an ovstorage PR to run the project verification gate and inspect risky diffs. |
| license | CC-BY-4.0 |
| version | 0.1.0 |
| author | NVIDIA Omniverse |
| tags | ["ovstorage","ci","verification"] |
| tools | ["Read","Bash"] |
| compatibility | Requires an ovstorage checkout and local toolchains needed by make verify and make test. |
Verify Before Merge
Goal
Run the same checks CI uses and catch common mistakes before review.
Recipe
- Run
git status --short and make sure only intended files changed.
- Run
make verify.
- Run
make test.
- If skills changed, run
cargo run -p xtask -- validate-skills.
- Confirm no vendored services files changed with
git diff --name-only -- ovstorage-services/.
- If generated headers changed, verify they were regenerated with
make verify-headers-clean.
References