From 49db0f2382521a4c4cb7f4fb22c805c901426369 Mon Sep 17 00:00:00 2001 From: Weeblr Date: Mon, 1 Mar 2021 11:17:37 +0100 Subject: [PATCH] Pull PR directly instead of Issues from Github --- .../com_patchtester/PatchTester/Model/PullsModel.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/administrator/components/com_patchtester/PatchTester/Model/PullsModel.php b/administrator/components/com_patchtester/PatchTester/Model/PullsModel.php index 6ae242a..3ad6387 100644 --- a/administrator/components/com_patchtester/PatchTester/Model/PullsModel.php +++ b/administrator/components/com_patchtester/PatchTester/Model/PullsModel.php @@ -508,7 +508,7 @@ class PullsModel extends AbstractModel // TODO - Option to configure the batch size $batchSize = 100; - $pullsResponse = Helper::initializeGithub()->getOpenIssues( + $pullsResponse = Helper::initializeGithub()->getOpenPulls( $this->getState()->get('github_user'), $this->getState()->get('github_repo'), $page, @@ -573,8 +573,6 @@ class PullsModel extends AbstractModel foreach ($pulls as $pull) { - if (isset($pull->pull_request)) - { // Check if this PR is RTC and has a `PR-` branch label $isRTC = false; $isNPM = false; @@ -618,14 +616,13 @@ class PullsModel extends AbstractModel $this->getDb()->quote( HTMLHelper::_('string.truncate', $pull->body, 100) ), - $this->getDb()->quote($pull->pull_request->html_url), + $this->getDb()->quote($pull->html_url), (int) $isRTC, (int) $isNPM, $this->getDb()->quote($branch), ]; $data[] = implode(',', $pullData); - } } // If there are no pulls to insert then bail, assume we're finished