You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 14, 2026. It is now read-only.
Description
The critical migration step. Update all Go module paths from `github.com/zeevdr/decree` to `github.com/opendecree/decree`.
Files to update
go.mod files (8 modules)
Each needs:
All .go source files
go.work
Other Go-adjacent files
Approach
```bash
Bulk rename across all Go files
find . -name '*.go' -o -name 'go.mod' -o -name 'go.work' | xargs sed -i 's|github.com/zeevdr/decree|github.com/opendecree/decree|g'
```
Then run `go mod tidy` in each module and verify with `go build ./...`
Depends on
Acceptance criteria