Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15397530
D17179.id41312.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
D17179.id41312.diff
View Options
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
Details
Attached
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)
Attached To
Mode
D17179: Draw project PHIDs from repositories when evaluating Herald object rules for commits
Attached
Detach File
Event Timeline
Log In to Comment