Rename push action to better reflect their function

Change-Id: I3686c5213c6c8948effce24fb185004c9f79edf4
diff --git a/container/tools/actions/__init__.py b/container/tools/actions/__init__.py
index 5c055f5..7f691f0 100644
--- a/container/tools/actions/__init__.py
+++ b/container/tools/actions/__init__.py
@@ -15,8 +15,8 @@
 from .clone_project import CloneProjectAction
 from .create_project import CreateProjectAction
 from .fetch_project import FetchProjectAction
-from .push_change import PushChangeAction
-from .push_commit import PushCommitAction
+from .push_for_review import PushForReviewAction
+from .push_to_branch import PushToBranchAction
 from .query_change_files import QueryChangeFilesAction
 from .query_changes import QueryChangesAction
 from .query_projects import QueryProjectsAction
diff --git a/container/tools/actions/push_change.py b/container/tools/actions/push_for_review.py
similarity index 92%
rename from container/tools/actions/push_change.py
rename to container/tools/actions/push_for_review.py
index ba268ff..bda2d41 100644
--- a/container/tools/actions/push_change.py
+++ b/container/tools/actions/push_for_review.py
@@ -15,7 +15,7 @@
 from . import abstract_push
 
 
-class PushChangeAction(abstract_push.AbstractPushAction):
+class PushForReviewAction(abstract_push.AbstractPushAction):
     def __init__(self, project_name, probability=0.2):
         super().__init__("HEAD:refs/for/master", project_name, probability=probability)
 
diff --git a/container/tools/actions/push_commit.py b/container/tools/actions/push_to_branch.py
similarity index 93%
rename from container/tools/actions/push_commit.py
rename to container/tools/actions/push_to_branch.py
index 7f88a6c..9762461 100644
--- a/container/tools/actions/push_commit.py
+++ b/container/tools/actions/push_to_branch.py
@@ -16,7 +16,7 @@
 from .fetch_project import FetchProjectAction
 
 
-class PushCommitAction(abstract_push.AbstractPushAction):
+class PushToBranchAction(abstract_push.AbstractPushAction):
     def __init__(self, project_name, probability=0.2):
         super().__init__("HEAD:master", project_name, probability=probability)
 
diff --git a/container/tools/start_test.py b/container/tools/start_test.py
index 7546370..381aefa 100755
--- a/container/tools/start_test.py
+++ b/container/tools/start_test.py
@@ -112,13 +112,13 @@
         action.execute()
 
     def _exec_push_commit_action(self):
-        action = actions.PushCommitAction(
+        action = actions.PushToBranchAction(
             self._choose_from_list_poisson(list(self.cloned_projects))
         )
         action.execute()
 
     def _exec_push_change_action(self):
-        action = actions.PushChangeAction(
+        action = actions.PushForReviewAction(
             self._choose_from_list_poisson(list(self.cloned_projects))
         )
         action.execute()