fix(#975): use hyperhive.local email domain to pass Forgejo validation

`@hyperhive` (no dot) is rejected by Forgejo's PATCH /admin/users API
with 422 Unprocessable Entity. Switch to `@hyperhive.local` across all
four files that construct hive-c0re/agent git emails and Forgejo account
emails, so both stay in sync and pass RFC-valid domain validation.
This commit is contained in:
atlas 2026-06-01 18:28:22 +02:00
commit 286a7c8fd3
4 changed files with 7 additions and 7 deletions

View file

@ -172,7 +172,7 @@ async fn migrate_applied_repo(name: &str) -> Result<()> {
"-c",
"user.name=c0re",
"-c",
"user.email=c0re@hyperhive",
"user.email=c0re@hyperhive.local",
"add",
"flake.nix",
],
@ -184,7 +184,7 @@ async fn migrate_applied_repo(name: &str) -> Result<()> {
"-c",
"user.name=c0re",
"-c",
"user.email=c0re@hyperhive",
"user.email=c0re@hyperhive.local",
"commit",
"-m",
"migration: module-only flake",