Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mfedec/salt-ext-github-runner
SaltStack Extension module to manage Github self hosted runners
https://github.com/mfedec/salt-ext-github-runner
github saltstack saltstack-extension
Last synced: 6 days ago
JSON representation
SaltStack Extension module to manage Github self hosted runners
- Host: GitHub
- URL: https://github.com/mfedec/salt-ext-github-runner
- Owner: mfedec
- License: apache-2.0
- Created: 2023-04-25T04:06:19.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-25T04:27:03.000Z (8 months ago)
- Last Synced: 2024-10-30T01:02:47.505Z (about 2 months ago)
- Topics: github, saltstack, saltstack-extension
- Language: Python
- Homepage: https://mfedec.github.io/salt-ext-github-runner/
- Size: 42 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# github_runner
Module to manage self hosted github runners
## Quickstart
To get started with your new project:
# Create a new venv
python3 -m venv env --prompt github_runner
source env/bin/activate# On mac, you may need to upgrade pip
python -m pip install --upgrade pip# On WSL or some flavors of linux you may need to install the `enchant`
# library in order to build the docs
sudo apt-get install -y enchant# Install extension + test/dev/doc dependencies into your environment
python -m pip install -e .[tests,dev,docs]# Run tests!
python -m nox -e tests-3# skip requirements install for next time
export SKIP_REQUIREMENTS_INSTALL=1# Build the docs, serve, and view in your web browser:
python -m nox -e docs && (cd docs/_build/html; python -m webbrowser localhost:8000; python -m http.server; cd -)# Run the example function
salt-call --local github_runner.example_function text="Happy Hacking!"