mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-12-23 15:17:47 +09:00
Update dependencies
This commit is contained in:
@@ -3,9 +3,12 @@
|
||||
namespace Github\Api;
|
||||
|
||||
use Github\Api\Organization\Actions\Secrets;
|
||||
use Github\Api\Organization\Actions\SelfHostedRunners;
|
||||
use Github\Api\Organization\Actions\Variables;
|
||||
use Github\Api\Organization\Hooks;
|
||||
use Github\Api\Organization\Members;
|
||||
use Github\Api\Organization\OutsideCollaborators;
|
||||
use Github\Api\Organization\SecretScanning;
|
||||
use Github\Api\Organization\Teams;
|
||||
|
||||
/**
|
||||
@@ -110,6 +113,14 @@ class Organization extends AbstractApi
|
||||
return new Secrets($this->getClient());
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Variables
|
||||
*/
|
||||
public function variables(): Variables
|
||||
{
|
||||
return new Variables($this->getClient());
|
||||
}
|
||||
|
||||
/**
|
||||
* @return OutsideCollaborators
|
||||
*/
|
||||
@@ -131,4 +142,20 @@ class Organization extends AbstractApi
|
||||
{
|
||||
return $this->get('/orgs/'.rawurlencode($organization).'/issues', array_merge(['page' => $page], $params));
|
||||
}
|
||||
|
||||
/**
|
||||
* @return SelfHostedRunners
|
||||
*/
|
||||
public function runners(): SelfHostedRunners
|
||||
{
|
||||
return new SelfHostedRunners($this->getClient());
|
||||
}
|
||||
|
||||
/**
|
||||
* @return SecretScanning
|
||||
*/
|
||||
public function secretScanning(): SecretScanning
|
||||
{
|
||||
return new SecretScanning($this->getClient());
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user