()
| 491 | } |
| 492 | |
| 493 | func (t defaultsTarget) displayName() string { |
| 494 | switch t.scope { |
| 495 | case defaultsScopeRepo: |
| 496 | return t.repoOwner + "/" + t.repoName |
| 497 | case defaultsScopeOrg: |
| 498 | return t.org |
| 499 | default: |
| 500 | return t.enterprise |
| 501 | } |
| 502 | } |
| 503 | |
| 504 | func runDefaultsGH(args ...string) ([]byte, error) { |
| 505 | envCmdLog.Printf("Running gh command: %v", args) |
no outgoing calls
no test coverage detected