diff --git a/backend/src/Designer/Services/Implementation/SourceControlSI.cs b/backend/src/Designer/Services/Implementation/SourceControlSI.cs index c7d00a8d7a2..d4442ee1f50 100644 --- a/backend/src/Designer/Services/Implementation/SourceControlSI.cs +++ b/backend/src/Designer/Services/Implementation/SourceControlSI.cs @@ -682,7 +682,8 @@ public async Task DeleteRepository(string org, string repository) private LibGit2Sharp.Signature GetDeveloperSignature() { - return new LibGit2Sharp.Signature(AuthenticationHelper.GetDeveloperUserName(_httpContextAccessor.HttpContext), "@jugglingnutcase", DateTime.Now); + var username = AuthenticationHelper.GetDeveloperUserName(_httpContextAccessor.HttpContext); + return new LibGit2Sharp.Signature(username, $"{username}@noreply.altinn.studio", DateTime.Now); } } }