patrickjanzen/github_action_tools

v1.0.3 2024-04-05 13:15 UTC

This package is auto-updated.

Last update: 2024-09-05 14:13:59 UTC


README

Helper Library for GitHub actions written in PHP

only feature so far:

Logger class for GitHub:

$logger->debug('Hello World');
$logger->notice('Hello World', filename: 'Test.php', line: 12);

leads to the output of:

::debug::Hello World
::notice file=Test.php,line=12::Hello World