pierreminiggio/github-action-run-creator

There is no license information available for the latest version (2.0.0) of this package.

2.0.0 2022-05-29 20:05 UTC

This package is auto-updated.

Last update: 2024-05-29 04:49:02 UTC


README

Install using composer :

composer require pierreminiggio/github-action-run-creator
use PierreMiniggio\GithubActionRunCreator\GithubActionRunCreator;

require __DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';

$creator = new GithubActionRunCreator();
$creator->create(
    'token',
    'pierreminiggio',
    'remotion-test-github-action',
    'render-video.yml',
    [
        'titleText' => 'Hello from PHP',
        'titleColor' => 'orange'
    ]
);