Develop #119
Reference in New Issue
Block a user
No description provided.
Delete Branch "develop"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Pull Request Overview
This PR updates documentation spacing in
labels.md
and enhances the Makefile with a newdoc
target and Go version bump.labels.md
.GOVERSION
to 1.24, added adoc
target and updated.PHONY
in the Makefile.Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
### katenary.v3/...
heading to improve readability.GOVERSION
to 1.24, addeddoc
target, and updated.PHONY
to includedoc
.Add
__label_doc
to the.PHONY
list to ensure the helper target is always run and not mistaken for a filename.The
doc
target currently only ensures gomarkdoc is installed but does not invoke it to actually generate documentation. Consider adding a command such asgomarkdoc -o doc/docs/labels.md ./doc/docs
(or the appropriate invocation) after the install step.