diff --git a/tasks.py b/tasks.py index 0685ff32c1..0f72f29f07 100644 --- a/tasks.py +++ b/tasks.py @@ -74,7 +74,8 @@ def _detect_space(repo, branch=None, yes=False): DEPLOY_RULES = ( ('prod', _detect_prod), ('stage', lambda _, branch: branch.startswith('release')), - ('dev', lambda _, branch: branch == 'develop'), + #('dev', lambda _, branch: branch == 'develop'), + ('dev', lambda _, branch: branch == 'feature/2792-2821-2901-security-updates'), # Uncomment below and adjust branch name to deploy desired feature branch to the feature space #('feature', lambda _, branch: branch == 'feature/INSERT_BRANCH_NAME'), )