AttestationDetail captures attestation source details that will be returned by the inspect command
| 47 | // AttestationDetail captures attestation source details |
| 48 | // that will be returned by the inspect command |
| 49 | type AttestationDetail struct { |
| 50 | OrgName string `json:"orgName"` |
| 51 | OrgID string `json:"orgId"` |
| 52 | RepositoryName string `json:"repositoryName"` |
| 53 | RepositoryID string `json:"repositoryId"` |
| 54 | WorkflowID string `json:"workflowId"` |
| 55 | } |
| 56 | |
| 57 | func getOrgAndRepo(tenant, repoURL string) (string, string, error) { |
| 58 | var after string |
nothing calls this directly
no outgoing calls
no test coverage detected