-
Notifications
You must be signed in to change notification settings - Fork 1
Refs/heads/docs update badges add blueprint for render #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Refs/heads/docs update badges add blueprint for render #11
Conversation
Signed-off-by: Bernhard Kaindl <[email protected]>
Signed-off-by: Bernhard Kaindl <[email protected]>
36a9f0a to
fc4447c
Compare
fc4447c to
c237dbc
Compare
c237dbc to
dff763a
Compare
dff763a to
72a7bd0
Compare
Signed-off-by: Bernhard Kaindl <[email protected]>
Signed-off-by: Bernhard Kaindl <[email protected]>
72a7bd0 to
9f543a6
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This pull request adds support for deploying documentation to Render.com and updates project metadata to reflect current Python version support. The changes modernize the project's documentation hosting and simplify Python version requirements.
- Adds Render.com deployment configuration for automatic documentation hosting
- Updates Python version requirements to support only 3.6, 3.11, 3.12, and 3.13
- Adds documentation badges and updates project branding to "XenServer Python libs for Dom0"
Reviewed Changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| render.yaml | New Render.com service configuration for static documentation hosting |
| pyproject.toml | Updated Python version requirements and classifiers |
| docs/source/index.rst | Added badges and updated documentation title |
| docs/source/conf.py | Added MyST heading anchors configuration |
| docs/requirements.txt | Added six dependency for documentation build |
| README.md | Updated badges, title, and project description |
| .github/workflows/main.yml | Added webhook trigger for Render.com deployment |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
| if: | | ||
| env.deploy_webhook_url && github.ref == env.docs_deploy_branch && | ||
| matrix.python-version == env.PYTHON_VERSION_USED_FOR_COVERAGE |
Copilot
AI
Aug 29, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The condition references env.PYTHON_VERSION_USED_FOR_COVERAGE but this environment variable is not defined in this workflow. This will cause the condition to always evaluate to false, preventing the deployment webhook from triggering.
No description provided.