You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// checkOutcome checks the verification outcomes for a given URL and returns the corresponding OCI verification result.
243
+
// It takes a slice of verification outcomes and a URL as input parameters.
244
+
// If there are no verification outcomes, it returns a failed verification result with an error message.
245
+
// If the first verification outcome has a verification level of "trustpolicy.LevelSkip", it returns an ignored verification result.
246
+
// If any of the verification results have an error, it logs the error message and sets the "ignore" flag to true if the error type is "trustpolicy.TypeAuthenticity".
247
+
// If the "ignore" flag is true, it returns an ignored verification result.
248
+
// Otherwise, it returns a successful verification result.
249
+
// The function returns the OCI verification result and an error, if any.
0 commit comments