Given a list of strings, write a function that returns a new list where all adjacent duplicate strings are removed.
['apple', 'apple', 'banana', 'orange', 'orange', 'orange']
['apple', 'banana', 'orange']
Bot