Skip to content

Fix ref type error #24941

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 26, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Add indicator for the error
  • Loading branch information
lunny committed May 26, 2023
commit 4afb1ca5ba8a43a8c189540f9d30e7561c6e9cef
2 changes: 1 addition & 1 deletion routers/api/actions/runner/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ func generateTaskContext(t *actions_model.ActionTask) *structpb.Struct {
"gitea_default_actions_url": setting.Actions.DefaultActionsURL,
})
if err != nil {
log.Error("%v", err)
log.Error("structpb.NewStruct failed: %v", err)
}

return taskContext
Expand Down