forked from phoenix-oss/llama-stack-mirror
docs: resync missing nvidia doc (#1947)
# What does this PR do? Resync doc. Signed-off-by: Sébastien Han <seb@redhat.com>
This commit is contained in:
parent
2ec5879f14
commit
68eeacec0e
2 changed files with 97 additions and 0 deletions
9
.github/workflows/pre-commit.yml
vendored
9
.github/workflows/pre-commit.yml
vendored
|
@ -31,3 +31,12 @@ jobs:
|
|||
- name: Verify if there are any diff files after pre-commit
|
||||
run: |
|
||||
git diff --exit-code || (echo "There are uncommitted changes, run pre-commit locally and commit again" && exit 1)
|
||||
|
||||
- name: Verify if there are any new files after pre-commit
|
||||
run: |
|
||||
unstaged_files=$(git ls-files --others --exclude-standard)
|
||||
if [ -n "$unstaged_files" ]; then
|
||||
echo "There are uncommitted new files, run pre-commit locally and commit again"
|
||||
echo "$unstaged_files"
|
||||
exit 1
|
||||
fi
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue