Skip to content

Instantly share code, notes, and snippets.

View itmart's full-sized avatar

Matthew Vo itmart

View GitHub Profile
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