From 496ee376a75798f2a1af247e6934138cad0a84e2 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Wed, 20 Mar 2024 19:00:15 -0700 Subject: `ghalogs` get the logs of a GHA workflow run Add a few internal packages to get the root of the git repository and to create clickable links in the terminal. --- internal/git/main.go | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 internal/git/main.go (limited to 'internal/git') diff --git a/internal/git/main.go b/internal/git/main.go new file mode 100644 index 0000000..67e7d4d --- /dev/null +++ b/internal/git/main.go @@ -0,0 +1,22 @@ +package git + +import ( + "fmt" + "os/exec" + "strings" +) + +func Root() (string, error) { + cmd := exec.Command("git", "rev-parse", "--show-toplevel") + output, err := cmd.Output() + if err != nil { + return "", fmt.Errorf("failed to get git repository: %s", err) + } + + // The output includes the full path to the repository. To get just the name, + // we can split the path by "/" and take the last part. + pathParts := strings.Split(strings.TrimSpace(string(output)), "/") + repoName := pathParts[len(pathParts)-1] + + return repoName, nil +} -- cgit 1.4.1