From 07e901e5d3a89902843a6e063420cbc57a081a36 Mon Sep 17 00:00:00 2001 From: Priyanka Kasireddy Date: Mon, 6 Jan 2020 11:57:08 -0500 Subject: [PATCH] Update dev deploy rule to point to develop branch --- tasks.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tasks.py b/tasks.py index 0e018eb5f..dee2c77a2 100644 --- a/tasks.py +++ b/tasks.py @@ -143,8 +143,7 @@ def _detect_space(repo, branch=None, yes=False): DEPLOY_RULES = ( ('prod', _detect_prod), ('stage', lambda _, branch: branch.startswith('release')), - ('dev', lambda _, branch: branch == 'feature/4076-upgrade-smart-open-related-pkgs'), - # ('dev', lambda _, branch: branch == 'develop'), + ('dev', lambda _, branch: branch == 'develop'), )