@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Pass full Harbormaster URIs to Buildkite

Summary: See PHI611 for details.

Test Plan:
Ran a Buildkite build, saw Buildkite confirm receipt of these parameters in the HTTP response:

{F5562054}

Reviewers: amckinley

Reviewed By: amckinley

Subscribers: PHID-OPKG-gm6ozazyms6q6i22gyam

Differential Revision: https://secure.phabricator.com/D19419

+8
+8
src/applications/harbormaster/step/HarbormasterBuildkiteBuildStepImplementation.php
··· 106 106 ), 107 107 'meta_data' => array( 108 108 'buildTargetPHID' => $build_target->getPHID(), 109 + 110 + // See PHI611. These are undocumented secret magic. 111 + 'phabricator:build:id' => (int)$build->getID(), 112 + 'phabricator:build:url' => 113 + PhabricatorEnv::getProductionURI($build->getURI()), 114 + 'phabricator:buildable:id' => (int)$buildable->getID(), 115 + 'phabricator:buildable:url' => 116 + PhabricatorEnv::getProductionURI($buildable->getURI()), 109 117 ), 110 118 ); 111 119