From 37dac61131683502f16f3fe059bf75b914d86652 Mon Sep 17 00:00:00 2001 From: Bob Trahan Date: Tue, 11 Mar 2014 15:21:46 -0700 Subject: [PATCH] Arcanist - add revision data to TYPE_LAND_WILLPUSHREVISION event Summary: pretty straight-forward stuff here. Note that in other events we use "fields" or "specification" rather than "revision"; I think "revision" is best particularly in this context where it is in fact the revision being landed. Fixes T4565. Test Plan: php -l Reviewers: epriestley Reviewed By: epriestley Subscribers: aran, epriestley, Korvin Maniphest Tasks: T4565 Differential Revision: https://secure.phabricator.com/D8484 --- src/workflow/ArcanistLandWorkflow.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/workflow/ArcanistLandWorkflow.php b/src/workflow/ArcanistLandWorkflow.php index 67b8e746..be069800 100644 --- a/src/workflow/ArcanistLandWorkflow.php +++ b/src/workflow/ArcanistLandWorkflow.php @@ -26,6 +26,10 @@ final class ArcanistLandWorkflow extends ArcanistBaseWorkflow { private $revision; private $messageFile; + public function getRevisionDict() { + return $this->revision; + } + public function getWorkflowName() { return 'land'; }