Page MenuHomePhabricator

D17179.id41312.diff
No OneTemporary

D17179.id41312.diff

diff --git a/src/applications/diffusion/herald/HeraldCommitAdapter.php b/src/applications/diffusion/herald/HeraldCommitAdapter.php
--- a/src/applications/diffusion/herald/HeraldCommitAdapter.php
+++ b/src/applications/diffusion/herald/HeraldCommitAdapter.php
@@ -104,12 +104,26 @@
public function getTriggerObjectPHIDs() {
$project_type = PhabricatorProjectObjectHasProjectEdgeType::EDGECONST;
- return array_merge(
- array(
- $this->getRepository()->getPHID(),
- $this->getPHID(),
- ),
- $this->loadEdgePHIDs($project_type));
+ $repository_phid = $this->getRepository()->getPHID();
+ $commit_phid = $this->getObject()->getPHID();
+
+ $phids = array();
+ $phids[] = $commit_phid;
+ $phids[] = $repository_phid;
+
+ // NOTE: This is projects for the repository, not for the commit. When
+ // Herald evalutes, commits normally can not have any project tags yet.
+ $repository_project_phids = PhabricatorEdgeQuery::loadDestinationPHIDs(
+ $repository_phid,
+ $project_type);
+ foreach ($repository_project_phids as $phid) {
+ $phids[] = $phid;
+ }
+
+ $phids = array_unique($phids);
+ $phids = array_values($phids);
+
+ return $phids;
}
public function explainValidTriggerObjects() {

File Metadata

Mime Type
text/plain
Expires
Mon, Mar 17, 8:52 PM (2 w, 4 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7701314
Default Alt Text
D17179.id41312.diff (1 KB)

Event Timeline