Ignore gh-pages branches, fixes #3073
parent
28c65b5425
commit
b7402c3b2d
|
@ -227,12 +227,16 @@ class GitHubDriver extends VcsDriver
|
|||
$this->branches = array();
|
||||
$resource = $this->getApiUrl() . '/repos/'.$this->owner.'/'.$this->repository.'/git/refs/heads?per_page=100';
|
||||
|
||||
$branchBlacklist = array('gh-pages');
|
||||
|
||||
do {
|
||||
$branchData = JsonFile::parseJson($this->getContents($resource), $resource);
|
||||
foreach ($branchData as $branch) {
|
||||
$name = substr($branch['ref'], 11);
|
||||
if (!in_array($name, $branchBlacklist)) {
|
||||
$this->branches[$name] = $branch['object']['sha'];
|
||||
}
|
||||
}
|
||||
|
||||
$resource = $this->getNextPage();
|
||||
} while ($resource);
|
||||
|
|
Loading…
Reference in New Issue