@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.

Hide harbormaster build passes in feed

Summary: These stories/notifications aren't too useful, just turn them off at least for now.

Test Plan: Will vet this in a sec...

Reviewers: btrahan

Reviewed By: btrahan

Subscribers: epriestley

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

+9
+9
src/applications/transactions/storage/PhabricatorApplicationTransaction.php
··· 451 451 switch ($this->getTransactionType()) { 452 452 case PhabricatorTransactions::TYPE_TOKEN: 453 453 return true; 454 + case PhabricatorTransactions::TYPE_BUILDABLE: 455 + switch ($this->getNewValue()) { 456 + case HarbormasterBuildable::STATUS_PASSED: 457 + // For now, don't notify on build passes either. These are pretty 458 + // high volume and annoying, with very little present value. We 459 + // might want to turn them back on in the specific case of 460 + // build successes on the current document? 461 + return true; 462 + } 454 463 } 455 464 456 465 return $this->shouldHide();