From d8f313f9e21ceea7b113fc04938fa4ffea577d9e Mon Sep 17 00:00:00 2001 From: Earl Warren Date: Thu, 9 Mar 2023 11:36:26 +0100 Subject: [PATCH] address oliverpool comments --- cmd/actions.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/cmd/actions.go b/cmd/actions.go index 89ad87e088..d917f27da2 100644 --- a/cmd/actions.go +++ b/cmd/actions.go @@ -45,21 +45,22 @@ func runActions(ctx *cli.Context) error { } if ctx.Bool("registration-token-admin") { - return runActionsRegistrationToken(ctx, stdCtx, 0, 0) + // ownid=0,repo_id=0,means this token is used for global + return runActionsRegistrationToken(stdCtx, 0, 0) } return nil } -func runActionsRegistrationToken(ctx *cli.Context, stdCtx context.Context, ownerID, repoID int64) error { +func runActionsRegistrationToken(stdCtx context.Context, ownerID, repoID int64) error { var token *actions_model.ActionRunnerToken token, err := actions_model.GetUnactivatedRunnerToken(stdCtx, ownerID, repoID) if errors.Is(err, util.ErrNotExist) { token, err = actions_model.NewRunnerToken(stdCtx, ownerID, repoID) if err != nil { - log.Fatalf("CreateRunnerToken", err) + log.Fatalf("CreateRunnerToken %v", err) } } else if err != nil { - log.Fatalf("GetUnactivatedRunnerToken", err) + log.Fatalf("GetUnactivatedRunnerToken %v", err) } fmt.Printf(token.Token) return nil