Skip to content
Snippets Groups Projects
Commit c712ea6f authored by Juhani Ränkimies's avatar Juhani Ränkimies
Browse files

feat: add inspect-repo executable

parent a0a682f9
No related branches found
No related tags found
No related merge requests found
package main
import (
"fmt"
"log"
"gitlab.com/juhani/go-semrel-gitlab/pkg/repo"
)
func main() {
r, err := repo.Inspect(".")
if err != nil {
log.Fatalln("Couldn't inspect repository", err)
}
fmt.Println(r.ReleaseNote())
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment