MCPcopy Create free account
hub / github.com/commonhaus/foundation / summary

Method summary

templates/panda/PolicyPanda.java:573–583  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

571 record CodeownersCheck(CodeOwnerError[] errors, GHContent content)
572 implements Information {
573 public String summary() {
574 // formatter:off
575 return "- %s Codeowners - %s%s%s".formatted(
576 (ok() ? "💚" : "❌"),
577 (ok() ? "File is valid" : "File has errors"),
578 Stream.of(errors)
579 .map(CodeOwnerError::summary)
580 .collect(Collectors.joining("")),
581 urlText(content));
582 // formatter:on
583 }
584
585 public String markdownSummary() {
586 return "- [%s] %s Codeowners - %s%s%s".formatted(

Callers

nothing calls this directly

Calls 2

okMethod · 0.95
urlTextMethod · 0.80

Tested by

no test coverage detected