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

Class CommunityFiles

templates/panda/PolicyPanda.java:501–512  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

499 }
500
501 record CommunityFiles(
502 GHContent governance,
503 GHContent codeOfConduct,
504 GHContent contributing) {
505
506 public CommunityFiles withFallback(CommunityFiles orgFiles) {
507 return new CommunityFiles(
508 governance != null ? governance : orgFiles.governance,
509 codeOfConduct != null ? codeOfConduct : orgFiles.codeOfConduct,
510 contributing != null ? contributing : orgFiles.contributing);
511 }
512 }
513
514 interface Information {
515 String summary();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…