File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11name : E2E Tests
22
3- on : [pull_request, push, workflow_dispatch]
3+ on :
4+ pull_request :
5+ branches :
6+ - dev
7+ - main
8+ push :
9+ branches :
10+ - dev
11+ - main
12+ workflow_dispatch :
13+ schedule :
14+ # Daily at 10:00 UTC. GitHub Actions does not support local timezones for cron.
15+ - cron : " 0 10 * * *"
416
517# MaaS configuration - can be overridden with repository secrets for different environments
618env :
7688 timeout-minutes : 60
7789 needs : unit-tests
7890 # Skip this job for fork PRs since secrets are not available
79- if : github.event_name == 'push' || github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository)
91+ if : github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository)
8092
8193 steps :
8294 - name : Checkout repository
@@ -511,7 +523,14 @@ jobs:
511523 timeout-minutes : 60
512524 needs : [unit-tests, integration-tests]
513525 # Skip this job for fork PRs since secrets are not available
514- if : github.event_name == 'push' || github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository)
526+ if : |
527+ github.event_name == 'push' ||
528+ github.event_name == 'workflow_dispatch' ||
529+ github.event_name == 'schedule' ||
530+ (
531+ github.event_name == 'pull_request' &&
532+ github.event.pull_request.head.repo.full_name == github.repository
533+ )
515534
516535 steps :
517536 - name : Checkout repository
Original file line number Diff line number Diff line change @@ -10,12 +10,12 @@ dependencies:
1010 version: 0.5.7
1111- name: ingestion-pipeline
1212 repository: https://rh-ai-quickstart.github.io/ai-architecture-charts
13- version: 0.7.3
13+ version: 0.7.4
1414- name: llama-stack
1515 repository: https://rh-ai-quickstart.github.io/ai-architecture-charts
1616 version: 0.7.3
1717- name: mcp-servers
1818 repository: https://rh-ai-quickstart.github.io/ai-architecture-charts
1919 version: 0.5.15
20- digest: sha256:91ce7975cc61f2fdfcde4a7b5743eb3496d9017638e2c7e127cc538f408283bb
21- generated: "2026-04-07T11:02:05.071841 -04:00"
20+ digest: sha256:58ad2663a8435d7d29b67670dd0deb209508a31020333b7be9501a515580f458
21+ generated: "2026-04-22T09:51:53.961068 -04:00"
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ apiVersion: v2
22name : rag
33description : A Helm chart for Kubernetes
44type : application
5- version : 0.2.43
6- appVersion : " 0.2.43 "
5+ version : 0.2.44
6+ appVersion : " 0.2.44 "
77
88dependencies :
99 - name : pgvector
@@ -19,7 +19,7 @@ dependencies:
1919 repository : https://rh-ai-quickstart.github.io/ai-architecture-charts
2020 condition : configure-pipeline.enabled
2121 - name : ingestion-pipeline
22- version : 0.7.3
22+ version : 0.7.4
2323 repository : https://rh-ai-quickstart.github.io/ai-architecture-charts
2424 condition : ingestion-pipeline.enabled
2525 - name : llama-stack
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ replicaCount: 1
33image :
44 repository : quay.io/rh-ai-quickstart/llamastack-dist-ui
55 pullPolicy : Always
6- tag : 0.2.43
6+ tag : 0.2.44
77
88service :
99 type : ClusterIP
You can’t perform that action at this time.
0 commit comments