From cad55f832066e72126eefc12b0ca9bbfd2632a6e Mon Sep 17 00:00:00 2001 From: Earl Warren Date: Sun, 10 Aug 2025 17:24:45 +0200 Subject: [PATCH] chore: reduce verbosity to debug without side effects --- act/model/github_context.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/act/model/github_context.go b/act/model/github_context.go index debc584e..4b1585ae 100644 --- a/act/model/github_context.go +++ b/act/model/github_context.go @@ -172,9 +172,6 @@ func (ghc *GithubContext) SetRepositoryAndOwner(ctx context.Context, githubInsta repo, err := git.FindGithubRepo(ctx, repoPath, githubInstance, remoteName) if err != nil { common.Logger(ctx).Debugf("unable to get git repo (githubInstance: %v; remoteName: %v, repoPath: %v): %v", githubInstance, remoteName, repoPath, err) - // nektos/act is used as a default action, so why not a repo? - ghc.Repository = "nektos/act" - ghc.RepositoryOwner = strings.Split(ghc.Repository, "/")[0] return } ghc.Repository = repo