This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def whats_worse?(milestone_branch) | |
| if milestone_branch.similar? "milestone/rest-api-rather-than-webhooks" | |
| return "Deploying to staging and break milestone" | |
| elsif milestone_branch.similar? "milestone/intercom" | |
| return "Deploying to UAT in the middle of client demo" | |
| else | |
| "¯\_(ツ)_/¯" | |
| end | |
| end |