phacility/phabricator · error · Exception
This diff ("%s") is not associated with a repository. A diff
Error message
This diff ("%s") is not associated with a repository. A diff must belong to a tracked repository to be built by CircleCI. What it means
Error "This diff ("%s") is not associated with a repository. A diff must belong to a tracked repository to be built by CircleCI." thrown in phacility/phabricator.
Source
Thrown at src/applications/differential/storage/DifferentialDiff.php:579
pht('The URI of the staging repository.'),
'repository.staging.ref' =>
pht('The ref name for this change in the staging repository.'),
);
}
public function newBuildableEngine() {
return new DifferentialBuildableEngine();
}
/* -( HarbormasterCircleCIBuildableInterface )----------------------------- */
public function getCircleCIGitHubRepositoryURI() {
$diff_phid = $this->getPHID();
$repository_phid = $this->getRepositoryPHID();
if (!$repository_phid) {
throw new Exception(
pht(
'This diff ("%s") is not associated with a repository. A diff '.
'must belong to a tracked repository to be built by CircleCI.',
$diff_phid));
}
$repository = id(new PhabricatorRepositoryQuery())
->setViewer(PhabricatorUser::getOmnipotentUser())
->withPHIDs(array($repository_phid))
->executeOne();
if (!$repository) {
throw new Exception(
pht(
'This diff ("%s") is associated with a repository ("%s") which '.
'could not be loaded.',
$diff_phid,
$repository_phid));
}View on GitHub (pinned to 5720a38cfe)
When it happens
Trigger: Thrown at src/applications/differential/storage/DifferentialDiff.php:579 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of phacility/phabricator@5720a38cfe (2026-08-21).
Data as JSON: /api/errors/04d076054725f812.
Report an issue: GitHub.