pierreminiggio / github-action-run-starter-and-artifact-downloader
Installs: 118
Dependents: 4
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/pierreminiggio/github-action-run-starter-and-artifact-downloader
Requires
Requires (Dev)
- phpunit/phpunit: ^9.5
README
Install using composer :
composer require pierreminiggio/github-action-run-starter-and-artifact-downloader
use PierreMiniggio\GithubActionRunStarterAndArtifactDownloader\GithubActionRunStarterAndArtifactDownloaderFactory; require __DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php'; $actionRunner = (new GithubActionRunStarterAndArtifactDownloaderFactory())->make(); $artifacts = $actionRunner->runActionAndGetArtifacts( 'token', 'pierreminiggio', 'remotion-test-github-action', 'render-video.yml', 3, 0, [ 'titleText' => 'Hello from PHP action runner', 'titleColor' => 'orange' ] ); var_dump($artifacts);