-
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
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
[CI] Add auto update workflow for Dockerfile graph #11879
base: main
Are you sure you want to change the base?
Conversation
👋 Hi! Thank you for contributing to the vLLM project. Once the PR is approved and ready to go, your PR reviewer(s) can run CI to test the changes comprehensively before merging. To run CI, PR reviewers can do one of these:
🚀 |
8818f0b
to
7c7284f
Compare
- Add workflow to automatically regenerate Dockerfile dependency graph - Add shellcheck fixes for better script robustness Signed-off-by: wineandchord <[email protected]>
7c7284f
to
7333617
Compare
Signed-off-by: wineandchord <[email protected]>
f5377e1
to
663ef84
Compare
Signed-off-by: wineandchord <[email protected]>
commit-message: "[Doc] Update Dockerfile dependency graph" | ||
title: "[Doc] Update Dockerfile dependency graph" | ||
body: | | ||
This PR updates the Dockerfile dependency graph following changes to the Dockerfile. | ||
|
||
- Generated by GitHub Actions workflow | ||
- Updates visualization in docs/source/assets/contributing/ | ||
|
||
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> |
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.
I carefully designed the title and commit message to resemble the existing ones.
Instead of a GitHub Action, could this be written as a |
This PR adds a GitHub Action workflow that automatically maintains the Dockerfile dependency graph visualization:
.github/workflows/update-dockerfile-graph.yml
which:The workflow helps maintain accurate documentation by automatically updating the
visualization in
docs/source/assets/contributing/
whenever the Dockerfile changes.This automation reduces maintenance overhead and prevents the documentation from
becoming outdated.
Fix #11880