You could also set your conditions without AssertJ and then just verify the boolean value with AssertJ.
Like this:
boolean result = list.stream()
                   .anyMatch(element -> element.matches(regex) || element.equals(specificString));
assertThat(result).isTrue()