Compare commits
3 Commits
7608bd8456
...
2c045b8494
Author | SHA1 | Date | |
---|---|---|---|
2c045b8494 | |||
469678e999 | |||
35f0f5c829 |
1
Makefile
1
Makefile
|
@ -12,7 +12,6 @@ all: build
|
||||||
|
|
||||||
build:
|
build:
|
||||||
$(foreach APP,$(APPS), go build -ldflags=$(FLAGS) -o $(BUILD_DIR)/$(APP) ./cmd/$(APP);)
|
$(foreach APP,$(APPS), go build -ldflags=$(FLAGS) -o $(BUILD_DIR)/$(APP) ./cmd/$(APP);)
|
||||||
cp ./build/repo-health-checker ./build/healthcheck
|
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf $(BUILD_DIR)/*
|
rm -rf $(BUILD_DIR)/*
|
||||||
|
|
|
@ -8,6 +8,7 @@ import (
|
||||||
|
|
||||||
type Conf struct {
|
type Conf struct {
|
||||||
Score int
|
Score int
|
||||||
|
ShowExecutorStatus bool `default:"true"`
|
||||||
ShowExitStatus bool `default:"false"`
|
ShowExitStatus bool `default:"false"`
|
||||||
ShowError bool `default:"false"`
|
ShowError bool `default:"false"`
|
||||||
ShowTime bool `default:"true"`
|
ShowTime bool `default:"true"`
|
||||||
|
@ -29,6 +30,9 @@ func (*ResultDetail) Run(results []stage.ExecutorResult, confAny any) (
|
||||||
var res []stage.ParserResult
|
var res []stage.ParserResult
|
||||||
for _, result := range results {
|
for _, result := range results {
|
||||||
comment := ""
|
comment := ""
|
||||||
|
if conf.ShowExecutorStatus {
|
||||||
|
comment += fmt.Sprintf("Executor Status: `%s`\n", result.Status.String())
|
||||||
|
}
|
||||||
if conf.ShowExitStatus {
|
if conf.ShowExitStatus {
|
||||||
comment += fmt.Sprintf("Exit Status: `%d`\n", result.ExitStatus)
|
comment += fmt.Sprintf("Exit Status: `%d`\n", result.ExitStatus)
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,7 +56,7 @@ func getNonAscii(root string) ([]string, error) {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
ret, matched := matcher.Match(strings.Split(relPath, "/"), nil)
|
ret, matched := matcher.Match(strings.Split(relPath, "/"), nil)
|
||||||
if matched && ret["text"].IsUnset() {
|
if matched && ret["text"].IsUnset() && !ret["text"].IsSet() {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user