Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix prepared a fix for the issue found in the latest run.
- ✅ Fixed: GitHub Actions badge URLs incorrectly use vanity domain
- Updated the README Tests badge image and link URLs to use the GitHub domain so the badge renders and points to the workflow page correctly.
Or push these changes by commenting:
@cursor push 2b9b022dd5
Preview (2b9b022dd5)
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
# Confire
[](https://pkg.go.dev/go.rtnl.ai/confire)
-[](https://go.rtnl.ai/confire/actions/workflows/test.yaml)
+[](https://github.com/rotationalio/confire/actions/workflows/test.yaml)
[](https://goreportcard.com/report/go.rtnl.ai/confire)
**Configuration management for services and distributed systems**This Bugbot Autofix run was free. To enable autofix for future PRs, go to the Cursor dashboard.
README.md
Outdated
| [](https://github.com/rotationalio/confire/actions/workflows/test.yaml) | ||
| [](https://goreportcard.com/report/github.com/rotationalio/confire) | ||
| [](https://pkg.go.dev/go.rtnl.ai/confire) | ||
| [](https://go.rtnl.ai/confire/actions/workflows/test.yaml) |
There was a problem hiding this comment.
GitHub Actions badge URLs incorrectly use vanity domain
Medium Severity
The Tests badge image URL and link were changed from github.com/rotationalio/confire/actions/... to go.rtnl.ai/confire/actions/.... The vanity domain go.rtnl.ai only serves Go module meta tags for go get resolution — it doesn't proxy GitHub web pages. This means the badge image won't load and the link won't navigate to the GitHub Actions page. The pkg.go.dev and goreportcard.com badges are fine since those services resolve by module path, but GitHub Actions URLs need to stay on github.com.



Scope of changes
Converts Confire to
go.rtnl.ai/confireas a vanity package.Type of change
Author checklist
Note
Low Risk
Primarily a module/import-path migration and CI/doc updates; risk is limited to downstream breakage if consumers still import the old path or if any references were missed.
Overview
Migrates the project from
github.com/rotationalio/confireto the vanity module pathgo.rtnl.ai/confireby updatinggo.modand rewriting internal imports across packages and tests.Updates CI (
.github/workflows/test.yaml) and README badges/examples to use the new checkout path and import/go-get instructions, keeping behavior otherwise unchanged.Written by Cursor Bugbot for commit 82e3005. Configure here.