We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11552a7 commit a8f643cCopy full SHA for a8f643c
models/actions/run_list.go
@@ -45,6 +45,9 @@ func (runs RunList) LoadTriggerUser(ctx context.Context) error {
45
run.TriggerUser = user_model.NewActionsUser()
46
} else {
47
run.TriggerUser = users[run.TriggerUserID]
48
+ if run.TriggerUser == nil {
49
+ run.TriggerUser = user_model.NewGhostUser()
50
+ }
51
}
52
53
return nil
0 commit comments