mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-26 00:32:41 +01:00
Dispatch event after collecting changes in diff
Summary: FB currently starts Sandcastle push before starting the diff workflow. If `arc diff` commits something then we need to restart the push. I want to avoid this by starting the push after commit. Test Plan: Will test after implementing the listener. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4785
This commit is contained in:
parent
5d7c77da72
commit
39cef6cb99
2 changed files with 5 additions and 0 deletions
|
@ -4,6 +4,7 @@ final class ArcanistEventType extends PhutilEventType {
|
|||
|
||||
const TYPE_COMMIT_WILLCOMMITSVN = 'commit.willCommitSVN';
|
||||
|
||||
const TYPE_DIFF_DIDCOLLECTCHANGES = 'diff.didCollectChanges';
|
||||
const TYPE_DIFF_WILLBUILDMESSAGE = 'diff.willBuildMessage';
|
||||
const TYPE_DIFF_DIDBUILDMESSAGE = 'diff.didBuildMessage';
|
||||
const TYPE_DIFF_WASCREATED = 'diff.wasCreated';
|
||||
|
|
|
@ -685,6 +685,10 @@ EOTEXT
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
$this->dispatchEvent(
|
||||
ArcanistEventType::TYPE_DIFF_DIDCOLLECTCHANGES,
|
||||
array());
|
||||
}
|
||||
|
||||
private function buildRevisionFromCommitMessage(
|
||||
|
|
Loading…
Reference in a new issue