From 767dd3113abeaf971d95caf5d5daf06366967748 Mon Sep 17 00:00:00 2001 From: Laura Beaufort <31420082+lbeaufort@users.noreply.github.com> Date: Fri, 28 Jun 2019 12:10:28 -0400 Subject: [PATCH] Temporary deploy to push to dev --- tasks.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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'), )