瀏覽代碼

refactor github template and tests

Igor Kasianenko 4 月之前
父節點
當前提交
9c12d5d0ba

+ 1 - 1
.github/ISSUE_TEMPLATE/bug.yml

@@ -6,7 +6,7 @@ body:
     attributes:
       value: >
         #### Before submitting a bug, please make sure the issue hasn't been already addressed by searching through [the
-        existing and past issues](https://github.com/facebookresearch/llama-recipes/issues), the [FAQ](https://github.com/facebookresearch/llama-recipes/blob/main/docs/FAQ.md) 
+        existing and past issues](https://github.com/meta-llama/llama-cookbook/issues), the [FAQ](https://github.com/meta-llama/llama-cookbook/blob/main/src/docs/FAQ.md) 
 
   - type: textarea
     id: system-info

+ 1 - 1
.github/ISSUE_TEMPLATE/feature-request.yml

@@ -1,5 +1,5 @@
 name: 🚀 Feature request
-description: Submit a proposal/request for a new llama-recipes feature
+description: Submit a proposal/request for a new llama-cookbook feature
 
 body:
 - type: textarea

+ 5 - 5
.github/workflows/pytest_cpu_gha_runner.yaml

@@ -1,4 +1,4 @@
-name: "[GHA][CPU] llama-recipes Pytest tests on CPU GitHub hosted runner."
+name: "[GHA][CPU] llama-cookbook Pytest tests on CPU GitHub hosted runner."
 on:
   pull_request:
     branches:
@@ -35,7 +35,7 @@ jobs:
         run: |
             cat /etc/os-release
 
-      - name: "Checkout 'facebookresearch/llama-recipes' repository"
+      - name: "Checkout 'meta-llama/llama-cookbook' repository"
         id: checkout
         uses: actions/checkout@v4
 
@@ -53,10 +53,10 @@ jobs:
           pip3 install setuptools
 
 
-      - name: "Installing 'llama-recipes' project"
-        id: install_llama_recipes_package
+      - name: "Installing 'llama-cookbook' project"
+        id: install_llama_cookbook_package
         run: |
-          echo "Installing 'llama-recipes' project (re: https://github.com/facebookresearch/llama-recipes?tab=readme-ov-file#install-with-optional-dependencies)"
+          echo "Installing 'llama-cookbook' project (re: https://github.com/meta-llama/llama-cookbook/tree/main/src?tab=readme-ov-file#install-with-optional-dependencies)"
           pip install --extra-index-url ${PYTORCH_WHEEL_URL} -e '.[tests]'