From 9a226abef6f0a9a5714aa243b5f5149f19c42390 Mon Sep 17 00:00:00 2001 From: Michael Valdron Date: Thu, 3 Sep 2026 12:18:31 -0400 Subject: [PATCH 1/4] change intelligent assistant (lightspeed) configs repository Signed-off-by: Michael Valdron --- .github/workflows/sync-lightspeed-configs.yaml | 2 +- CONTRIBUTING.md | 2 +- hack/sync-lightspeed-configs.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync-lightspeed-configs.yaml b/.github/workflows/sync-lightspeed-configs.yaml index 1da0a3a3..b0631b42 100644 --- a/.github/workflows/sync-lightspeed-configs.yaml +++ b/.github/workflows/sync-lightspeed-configs.yaml @@ -148,7 +148,7 @@ jobs: SYNCED_FILES=$(git diff --name-only HEAD~1 -- "${FILES_DIR}" | sed 's/^/- `/;s/$/`/') BODY=$(cat < Date: Thu, 3 Sep 2026 12:33:01 -0400 Subject: [PATCH 2/4] fix: use redhat-ai-dev/lightspeed-configs repo in lightspeed configs sync workflow if branch target is release-1.10 Signed-off-by: Michael Valdron --- .github/workflows/sync-lightspeed-configs.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sync-lightspeed-configs.yaml b/.github/workflows/sync-lightspeed-configs.yaml index b0631b42..a3af771f 100644 --- a/.github/workflows/sync-lightspeed-configs.yaml +++ b/.github/workflows/sync-lightspeed-configs.yaml @@ -78,7 +78,12 @@ jobs: git config user.email "41898282+github-actions[bot]@users.noreply.github.com" - name: Sync Lightspeed Core config files - run: ./hack/sync-lightspeed-configs.sh --ref ${{ matrix.branch }} + run: | + if [[ "${{ matrix.branch }}" == "release-1.10" ]]; then + ./hack/sync-lightspeed-configs.sh --repo redhat-ai-dev/lightspeed-configs --ref ${{ matrix.branch }} + else + ./hack/sync-lightspeed-configs.sh --ref ${{ matrix.branch }} + fi - name: Check for changes id: changes From a0b5fdca9f8d59bd8b37909e586dd35c60e4644b Mon Sep 17 00:00:00 2001 From: Michael Valdron Date: Thu, 3 Sep 2026 12:50:35 -0400 Subject: [PATCH 3/4] fix: correct sync PR title to show redhat-ai-dev repo if release-1.10 is the target branch Signed-off-by: Michael Valdron --- .github/workflows/sync-lightspeed-configs.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sync-lightspeed-configs.yaml b/.github/workflows/sync-lightspeed-configs.yaml index a3af771f..29c0dc38 100644 --- a/.github/workflows/sync-lightspeed-configs.yaml +++ b/.github/workflows/sync-lightspeed-configs.yaml @@ -132,6 +132,11 @@ jobs: run: | TITLE="chore(intelligent-assistant): sync Lightspeed Core config files and bump chart to ${NEW_VERSION}" BRANCH="chore/sync-lightspeed-configs-${TARGET_BRANCH}" + TARGET_REPO="redhat-developer/rhdh-intelligent-assistant-configs" + + if [[ "${TARGET_BRANCH}" == "release-1.10" ]]; then + TARGET_BRANCH="redhat-ai-dev/lightspeed-configs" + fi EXISTING_PR=$(gh pr list --head "${BRANCH}" --base "${TARGET_BRANCH}" --state open --json number --jq '.[0].number // empty') @@ -153,7 +158,7 @@ jobs: SYNCED_FILES=$(git diff --name-only HEAD~1 -- "${FILES_DIR}" | sed 's/^/- `/;s/$/`/') BODY=$(cat < Date: Thu, 3 Sep 2026 13:22:52 -0400 Subject: [PATCH 4/4] fix typo Signed-off-by: Michael Valdron --- .github/workflows/sync-lightspeed-configs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync-lightspeed-configs.yaml b/.github/workflows/sync-lightspeed-configs.yaml index 29c0dc38..f030825c 100644 --- a/.github/workflows/sync-lightspeed-configs.yaml +++ b/.github/workflows/sync-lightspeed-configs.yaml @@ -135,7 +135,7 @@ jobs: TARGET_REPO="redhat-developer/rhdh-intelligent-assistant-configs" if [[ "${TARGET_BRANCH}" == "release-1.10" ]]; then - TARGET_BRANCH="redhat-ai-dev/lightspeed-configs" + TARGET_REPO="redhat-ai-dev/lightspeed-configs" fi EXISTING_PR=$(gh pr list --head "${BRANCH}" --base "${TARGET_BRANCH}" --state open --json number --jq '.[0].number // empty')