Add label color env var to help topic, unused fix
This commit adds the new environment variable to the `gh environment` help topic. Additionally, there is a small fix for Go linter for an unused variable raised as a problem.
This commit is contained in:
parent
e9a12853cb
commit
addbc6ac5c
2 changed files with 4 additions and 1 deletions
|
|
@ -87,7 +87,7 @@ func isRootCmd(command *cobra.Command) bool {
|
|||
return command != nil && !command.HasParent()
|
||||
}
|
||||
|
||||
func rootHelpFunc(f *cmdutil.Factory, command *cobra.Command, args []string) {
|
||||
func rootHelpFunc(f *cmdutil.Factory, command *cobra.Command, _ []string) {
|
||||
flags := command.Flags()
|
||||
|
||||
if isRootCmd(command) {
|
||||
|
|
|
|||
|
|
@ -81,6 +81,9 @@ var HelpTopics = []helpTopic{
|
|||
%[1]sCLICOLOR_FORCE%[1]s: set to a value other than %[1]s0%[1]s to keep ANSI colors in output
|
||||
even when the output is piped.
|
||||
|
||||
%[1]sGH_COLOR_LABELS%[1]s: set to any value to display labels using their RGB hex color codes in terminals that
|
||||
support truecolor.
|
||||
|
||||
%[1]sGH_FORCE_TTY%[1]s: set to any value to force terminal-style output even when the output is
|
||||
redirected. When the value is a number, it is interpreted as the number of columns
|
||||
available in the viewport. When the value is a percentage, it will be applied against
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue