Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/production_run_complete_llm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ concurrency:
jobs:
run-production-workflow:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
env:
ZENML_STORE_URL: ${{ secrets.ZENML_PROJECTS_HOST }}
ZENML_STORE_API_KEY: ${{ secrets.ZENML_PROJECTS_API_KEY }}
Expand Down Expand Up @@ -56,4 +57,4 @@ jobs:
- name: Run pipeline, create pipeline, configure trigger (Production)
working-directory: ./llm-complete-guide
run: |
python gh_action_rag.py --no-cache --create-template --event-source-id ${{ env.ZENML_EVENT_SOURCE_ID }} --service-account-id ${{ env.ZENML_SERVICE_ACCOUNT_ID }} --config production/rag.yaml --zenml-model-version production
python gh_action_rag.py --no-cache --create-template --event-source-id ${{ env.ZENML_EVENT_SOURCE_ID }} --service-account-id ${{ env.ZENML_SERVICE_ACCOUNT_ID }} --config production/rag.yaml --zenml-model-version production
2 changes: 2 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ jobs:
spell-check:
name: spell-check
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
env:
ZENML_DEBUG: 1
ZENML_ANALYTICS_OPT_IN: false
Expand All @@ -23,3 +24,4 @@ jobs:

markdown-link-check:
uses: ./.github/workflows/markdown-link-check.yml
if: github.event.pull_request.draft == false
3 changes: 2 additions & 1 deletion .github/workflows/staging_run_complete_llm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ concurrency:
jobs:
run-staging-workflow:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
env:
ZENML_STORE_URL: ${{ secrets.ZENML_PROJECTS_HOST }}
ZENML_STORE_API_KEY: ${{ secrets.ZENML_PROJECTS_API_KEY }}
Expand Down Expand Up @@ -52,4 +53,4 @@ jobs:
- name: Run pipeline (Staging)
working-directory: ./llm-complete-guide
run: |
python gh_action_rag.py --no-cache --config staging/rag.yaml --zenml-model-version staging
python gh_action_rag.py --no-cache --config staging/rag.yaml --zenml-model-version staging
Loading