-
Notifications
You must be signed in to change notification settings - Fork 34
Open
Labels
Description
Objective
Rebuild the gh-aw binary to embed the updated schema files after the expires pattern change.
Context
Schema files in pkg/parser/schemas/ are embedded in the binary using //go:embed directives. After modifying the JSON schema, the binary must be rebuilt for changes to take effect.
Approach
- Ensure schema changes are committed
- Run
make buildto rebuild the binary - Verify the build completes successfully
- Test that schema validation now rejects hour-based expires values
Commands to Run
make buildAcceptance Criteria
- Binary builds successfully without errors
- Binary size is reasonable (no unexpected bloat)
- Schema validation rejects
expires: "20h"as invalid - Schema validation accepts
expires: "7d"as valid
Related to [plan] Fix expires field schema-implementation mismatch #7198
AI generated by Plan Command for discussion #7174