in pkg/event_processor/github/github.go [245:254]
func isPRNotFoundErr(err error) bool {
var responseErr *github.ErrorResponse
if errors.As(err, &responseErr) {
if responseErr.Response.StatusCode == http.StatusNotFound {
return true
}
}
return false
}