actions-toolkit
🛠The GitHub ToolKit for developing GitHub Actions in Python.
🛠The GitHub ToolKit for developing GitHub Actions in Python.
To install packages from this channel, you must first login at the command line:
anaconda loginYou can then use the channel temporarily with conda or add it to your .condarc file for configured ongoing access. Learn more
The GitHub Actions ToolKit provides an SDK to make creating actions easier in Python.
Action Toolkit is available on PyPI:
$ python -m pip install actions-toolkit
Action Toolkit officially supports Python 3.6+.
>>> import os
>>> from actions_toolkit import core
>>> os.environ['INPUT_NAME'] = 'Actions Toolkit'
>>> core.get_input('name', required=True)
'Actions Toolkit'
>>> core.error('Something went wrong.')
::error::Something went wrong.
>>> core.info('Run successfully.')
Run successfully.
>>> core.set_failed('SSL certificates installation failed.')
::error::SSL certificates installation failed.
For more examples and API documentation, please see the core & github.
Contributions are always welcomed!
Here are the workflow for contributors:
Please refer to CONTRIBUTING for detailed guidelines.
The scripts and documentation in this project are released under the MIT License.
Summary
🛠The GitHub ToolKit for developing GitHub Actions in Python.
Last Updated
Apr 27, 2026 at 18:50
License
MIT