Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15408675
D10026.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D10026.diff
View Options
diff --git a/src/events/constant/ArcanistEventType.php b/src/events/constant/ArcanistEventType.php
--- a/src/events/constant/ArcanistEventType.php
+++ b/src/events/constant/ArcanistEventType.php
@@ -9,6 +9,7 @@
const TYPE_DIFF_DIDBUILDMESSAGE = 'diff.didBuildMessage';
const TYPE_DIFF_WASCREATED = 'diff.wasCreated';
+ const TYPE_REVISION_WASCREATEDREVISION = 'revision.wasCreatedRevision';
const TYPE_REVISION_WILLCREATEREVISION = 'revision.willCreateRevision';
const TYPE_LAND_WILLPUSHREVISION = 'land.willPushRevision';
diff --git a/src/workflow/ArcanistDiffWorkflow.php b/src/workflow/ArcanistDiffWorkflow.php
--- a/src/workflow/ArcanistDiffWorkflow.php
+++ b/src/workflow/ArcanistDiffWorkflow.php
@@ -613,6 +613,12 @@
}
$uri = $result['uri'];
+ $this->dispatchEvent(
+ ArcanistEventType::TYPE_REVISION_WASCREATEDREVISION,
+ array(
+ 'revisionUri' => $uri
+ ));
+
echo phutil_console_format(
" **Revision URI:** __%s__\n\n",
$uri);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Mar 20, 12:46 AM (2 w, 2 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7712247
Default Alt Text
D10026.diff (1 KB)
Attached To
Mode
D10026: Add a new arcanist event which gets triggered after a revision has been created and assigned a uri.
Attached
Detach File
Event Timeline
Log In to Comment