:mod:`gidgethub.actions` --- Support for GitHub Actions ======================================================= .. module:: gidgethub.actions .. versionadded:: 4.0.0 This module is to help provide support for `GitHub Actions`_ when writing a `container action `__. .. function:: workspace() Return a :class:`pathlib.Path` object representing the ``GITHUB_WORKSPACE`` path. As the location is considered static, the function is idempotent after its initial call. .. function:: event() Return the webhook event data as kept at the path as pointed at by the ``GITHUB_EVENT_PATH`` environment variable. As the data is considered static, the function is idempotent after its initial call. .. function:: command(cmd, val, **parameters) Issue a `workflow command `_. Note that no automatic string conversion is performed on any arguments. :: # `::warning file=app.js,line=1,col=5::Missing semicolon` gidgethub.actions.command("warning", "Missing semicolon", file="app.js", line="1", col="5") .. function:: setenv(name, value) Creates or updates an environment variable for this action and all the subsequent actions running in the job. Note that no automatic string conversion is performed on any arguments. .. versionadded:: 5.0.0 .. function:: addpath(path) Prepends the given *path* to the system PATH variable for this action and all the subsequent actions running in the job. The *path* argument can be either :class:`str` or :class:`os.PathLike`/:class:`pathlib.Path`. .. versionadded:: 5.0.0 .. _GitHub Actions: https://help.github.com/en/actions