Overriding Liquibase Spring Boot default behavior

After doing few POCs on db schema management tools, we decided to go with Liquibase. I’m okay with the default behavior of the Spring Boot app - “update”. Is there a way I can override this behavior to a kind of status check, like Liquibase goal - “status” that is used with maven?
While looking at some documentation, I came across few java classes - liquibase.command.CommandScope, liquibase.command.CommandStep. Can we use these and related classes to achieve overriding? Greatly appreciate, if someone can throw some light on this.
Thanks
Ven