This is an automated email from the ASF dual-hosted git repository.

tzimanyi pushed a commit to branch apache_migration
in repository https://gitbox.apache.org/repos/asf/incubator-kie-optaplanner.git


The following commit(s) were added to refs/heads/apache_migration by this push:
     new 132f821180 Update kiegroup references to apache (#2981)
132f821180 is described below

commit 132f821180855219ab2f128f61657b560964e8b6
Author: Tibor Zimányi <[email protected]>
AuthorDate: Mon Sep 18 12:23:52 2023 +0200

    Update kiegroup references to apache (#2981)
    
    Co-authored-by: radtriste <[email protected]>
    Co-authored-by: jstastny-cz <[email protected]>
---
 .ci/buildchain-config.yaml                       |  4 ++--
 .ci/buildchain-project-dependencies.yaml         |  6 +++---
 .ci/environments/common/update_quarkus.sh        |  2 +-
 .ci/jenkins/Jenkinsfile                          |  8 ++++----
 .ci/jenkins/Jenkinsfile.deploy                   | 12 +++++------
 .ci/jenkins/Jenkinsfile.promote                  |  6 +++---
 .ci/jenkins/Jenkinsfile.turtle                   |  2 +-
 .ci/jenkins/config/branch.yaml                   | 26 +++++++++++++++---------
 .ci/jenkins/config/main.yaml                     |  9 ++++----
 .ci/jenkins/dsl/jobs.groovy                      |  7 +++----
 .ci/jenkins/dsl/test.sh                          |  8 ++++----
 .ci/jenkins/project/Jenkinsfile.drools           |  8 ++++----
 .ci/jenkins/project/Jenkinsfile.nightly          |  2 +-
 .ci/jenkins/project/Jenkinsfile.post-release     |  8 ++++----
 .ci/jenkins/project/Jenkinsfile.release          |  4 ++--
 .github/pull_request_template.md                 |  8 ++++----
 .github/workflows/full-downstream.yml            |  2 +-
 .github/workflows/generate_status_page.yaml      |  4 ++--
 .github/workflows/generate_status_page_data.yaml |  6 +++---
 .github/workflows/jenkins-tests-PR.yml           |  4 ++--
 .github/workflows/pull_request.yml               |  4 ++--
 21 files changed, 73 insertions(+), 67 deletions(-)

diff --git a/.ci/buildchain-config.yaml b/.ci/buildchain-config.yaml
index 7de9ecc290..9540bf5687 100644
--- a/.ci/buildchain-config.yaml
+++ b/.ci/buildchain-config.yaml
@@ -25,7 +25,7 @@ default:
         docker system prune -f
 
 build:
-  - project: kiegroup/optaplanner
+  - project: apache/incubator-kie-optaplanner
     build-command:
       before:
         upstream: |
@@ -35,7 +35,7 @@ build:
       upstream: |
         mvn clean install -Dquickly ${{ env.BUILD_MVN_OPTS }} ${{ 
env.BUILD_MVN_OPTS_UPSTREAM }} ${{ env.OPTAPLANNER_BUILD_MVN_OPTS_UPSTREAM }}
 
-  - project: kiegroup/optaplanner-quickstarts
+  - project: apache/incubator-kie-optaplanner-quickstarts
     build-command:
       current: |
         mvn clean install ${{ env.BUILD_MVN_OPTS }} ${{ 
env.BUILD_MVN_OPTS_CURRENT }} ${{ env.OPTAPLANNER_QUICKSTARTS_BUILD_MVN_OPTS }}
diff --git a/.ci/buildchain-project-dependencies.yaml 
b/.ci/buildchain-project-dependencies.yaml
index f4c6113d2a..7d5a5b45a6 100644
--- a/.ci/buildchain-project-dependencies.yaml
+++ b/.ci/buildchain-project-dependencies.yaml
@@ -1,9 +1,9 @@
 version: "2.1"
 dependencies:
-  - project: kiegroup/optaplanner
-  - project: kiegroup/optaplanner-quickstarts
+  - project: apache/incubator-kie-optaplanner
+  - project: apache/incubator-kie-optaplanner-quickstarts
     dependencies:
-      - project: kiegroup/optaplanner
+      - project: apache/incubator-kie-optaplanner
     mapping:
       dependencies:
         default:
diff --git a/.ci/environments/common/update_quarkus.sh 
b/.ci/environments/common/update_quarkus.sh
index a78863f4ee..c71b7f9acc 100755
--- a/.ci/environments/common/update_quarkus.sh
+++ b/.ci/environments/common/update_quarkus.sh
@@ -3,7 +3,7 @@ set -euo pipefail
 
 mvn_cmd="mvn ${BUILD_MVN_OPTS:-} ${BUILD_MVN_OPTS_QUARKUS_UPDATE:-}"
 
-source <(curl -s 
https://raw.githubusercontent.com/kiegroup/kogito-pipelines/main/dsl/seed/scripts/install_quarkus.sh)
+source <(curl -s 
https://raw.githubusercontent.com/apache/incubator-kie-kogito-pipelines/main/dsl/seed/scripts/install_quarkus.sh)
 
 echo "Update project with Quarkus version ${QUARKUS_VERSION}"
 
diff --git a/.ci/jenkins/Jenkinsfile b/.ci/jenkins/Jenkinsfile
index 360483fe9d..8f360bd068 100644
--- a/.ci/jenkins/Jenkinsfile
+++ b/.ci/jenkins/Jenkinsfile
@@ -8,11 +8,11 @@ pipeline {
     }
     options {
         timestamps()
-        timeout(time: 720, unit: 'MINUTES')
+        timeout(time: 360, unit: 'MINUTES')
     }
     environment {
-        BUILDCHAIN_PROJECT = 'kiegroup/optaplanner'
-        BUILDCHAIN_CONFIG_REPO = 'optaplanner'
+        BUILDCHAIN_PROJECT = 'apache/incubator-kie-optaplanner'
+        BUILDCHAIN_CONFIG_REPO = 'incubator-kie-optaplanner'
         BUILDCHAIN_CONFIG_FILE_PATH = '.ci/buildchain-config.yaml'
 
         ENABLE_SONARCLOUD = 'true'
@@ -25,7 +25,7 @@ pipeline {
                 script {
                     // load `pr_check.groovy` file from kogito-pipelines:main
                     dir('kogito-pipelines') {
-                        
checkout(githubscm.resolveRepository('kogito-pipelines', 'kiegroup', 
'apache_migration', false, 'kie-ci')) // TODO to change back to kiegroup:main
+                        
checkout(githubscm.resolveRepository('incubator-kie-kogito-pipelines', 
'apache', 'main', false, 'ASF_Cloudbees_Jenkins_ci-builds'))
                         pr_check_script = load 'dsl/scripts/pr_check.groovy'
                     }
                 }
diff --git a/.ci/jenkins/Jenkinsfile.deploy b/.ci/jenkins/Jenkinsfile.deploy
index f7e98f3694..e1e895a708 100644
--- a/.ci/jenkins/Jenkinsfile.deploy
+++ b/.ci/jenkins/Jenkinsfile.deploy
@@ -7,8 +7,8 @@ import org.kie.jenkins.MavenStagingHelper
 
 deployProperties = [:]
 
-optaplannerRepository = 'optaplanner'
-quickstartsRepository = 'optaplanner-quickstarts'
+optaplannerRepository = 'incubator-kie-optaplanner'
+quickstartsRepository = 'incubator-kie-optaplanner-quickstarts'
 
 imageUtils = null
 
@@ -307,7 +307,7 @@ void checkoutRepo(String repo, String dirName = repo) {
     dir(dirName) {
         deleteDir()
         if (params.PR_TARGET_BRANCH) {
-            githubscm.checkoutIfExists(repo, getGitAuthor(), getBuildBranch(), 
'kiegroup', getFallbackBranch(repo), true)
+            githubscm.checkoutIfExists(repo, getGitAuthor(), getBuildBranch(), 
'apache', getFallbackBranch(repo), true)
         } else {
             checkout(githubscm.resolveRepository(repo, getGitAuthor(), 
getBuildBranch(), false))
         }
@@ -318,7 +318,7 @@ void checkoutQuickstarts(String dirName = 
quickstartsRepository) {
     dir(dirName) {
         deleteDir()
         if (params.PR_TARGET_BRANCH) {
-            githubscm.checkoutIfExists(quickstartsRepository, getGitAuthor(), 
getBuildBranch(), 'kiegroup', getQuickStartsBranch(), true)
+            githubscm.checkoutIfExists(quickstartsRepository, getGitAuthor(), 
getBuildBranch(), 'apache', getQuickStartsBranch(), true)
         } else {
             checkout(githubscm.resolveRepository(quickstartsRepository, 
getGitAuthor(), getQuickStartsBranch(), false))
         }
@@ -326,7 +326,7 @@ void checkoutQuickstarts(String dirName = 
quickstartsRepository) {
 }
 
 String getFallbackBranch(String repo) {
-    def repositoryScm = githubscm.getRepositoryScm(repo, 'kiegroup', 
params.PR_TARGET_BRANCH)
+    def repositoryScm = githubscm.getRepositoryScm(repo, 'apache', 
params.PR_TARGET_BRANCH)
     return repositoryScm ? params.PR_TARGET_BRANCH : 'main'
 }
 
@@ -439,7 +439,7 @@ boolean shouldDeployToRepository() {
 }
 
 boolean isNotTestingBuild() {
-    return getGitAuthor() == 'kiegroup'
+    return getGitAuthor() == 'apache'
 }
 
 boolean isRelease() {
diff --git a/.ci/jenkins/Jenkinsfile.promote b/.ci/jenkins/Jenkinsfile.promote
index cf6651d7df..341460b3e4 100644
--- a/.ci/jenkins/Jenkinsfile.promote
+++ b/.ci/jenkins/Jenkinsfile.promote
@@ -6,8 +6,8 @@ import org.kie.jenkins.MavenCommand
 deployProperties = [:]
 pipelineProperties = [:]
 
-String optaplannerRepository = 'optaplanner'
-String quickstartsRepository = 'optaplanner-quickstarts'
+String optaplannerRepository = 'incubator-kie-optaplanner'
+String quickstartsRepository = 'incubator-kie-optaplanner-quickstarts'
 
 imageUtils = null
 
@@ -173,7 +173,7 @@ String getParamOrDeployProperty(String paramKey, String 
deployPropertyKey) {
 //////////////////////////////////////////////////////////////////////////////
 
 boolean isNotTestingBuild() {
-    return getGitAuthor() == 'kiegroup'
+    return getGitAuthor() == 'apache'
 }
 
 String getProjectVersion() {
diff --git a/.ci/jenkins/Jenkinsfile.turtle b/.ci/jenkins/Jenkinsfile.turtle
index 598a677abe..2130facecb 100644
--- a/.ci/jenkins/Jenkinsfile.turtle
+++ b/.ci/jenkins/Jenkinsfile.turtle
@@ -2,7 +2,7 @@
 
 import org.kie.jenkins.MavenCommand
 
-optaplannerRepo = 'optaplanner'
+optaplannerRepo = 'incubator-kie-optaplanner'
 
 pipeline {
     agent {
diff --git a/.ci/jenkins/config/branch.yaml b/.ci/jenkins/config/branch.yaml
index 089fd1ef1e..714074894b 100644
--- a/.ci/jenkins/config/branch.yaml
+++ b/.ci/jenkins/config/branch.yaml
@@ -24,17 +24,23 @@ environments:
 disable:
   triggers: true # TODO to set back
 repositories:
-- name: optaplanner
-- name: optaplanner-quickstarts
-# - name: optaplanner-website // Not migrated yet
-- name: kie-benchmarks
-  author:
-    name: radtriste # TODO set back. Could not push to kiegroup
+- name: incubator-kie-optaplanner
+  job_display_name: optaplanner
+- name: incubator-kie-optaplanner-quickstarts
+  job_display_name: optaplanner-quickstarts
+  branch: 8.x
+# Not migrated to Apache yet
+# - name: incubator-kie-optaplanner-website
+#   job_display_name: optaplanner-website
+- name: incubator-kie-kie-benchmarks
+  job_display_name: kie-benchmarks
 git:
   author:
-    name: kiegroup
-    credentials_id: kie-ci5
-    token_credentials_id: kie-ci5-token
+    name: apache
+    # Taken from https://ci-builds.apache.org/credentials/
+    # Need to be verified
+    credentials_id: 399061d0-5ab5-4142-a186-a52081fef742
+    token_credentials_id: ci-builds
   fork_author:
     name: kie-ci
     credentials_id: kie-ci
@@ -46,7 +52,7 @@ git:
   jenkins_config_path: .ci/jenkins
 buildchain_config:
   git:
-    repository: optaplanner
+    repository: incubator-kie-optaplanner
     file_path: .ci/buildchain-config.yaml
 maven:
   settings_file_id: kie-release-settings
diff --git a/.ci/jenkins/config/main.yaml b/.ci/jenkins/config/main.yaml
index 749c71f3c5..321bbd0b22 100644
--- a/.ci/jenkins/config/main.yaml
+++ b/.ci/jenkins/config/main.yaml
@@ -3,11 +3,12 @@ ecosystem:
   projects:
   - name: optaplanner
     regexs:
+    - incubator-kie-opta.*
     - opta.*
   - name: kie-benchmarks
     ignore_release: true
     regexs:
-    - kie-benchmarks.*
+    - incubator-kie-kie-benchmarks.*
 git:
   branches:
   - name: apache_migration
@@ -15,10 +16,10 @@ git:
 seed:
   config_file:
     git:
-      repository: optaplanner
+      repository: incubator-kie-optaplanner
       author:
-        name: kiegroup
-        credentials_id: kie-ci5
+        name: apache
+        credentials_id: ASF_Cloudbees_Jenkins_ci-builds
       branch: apache_migration
     path: .ci/jenkins/config/branch.yaml
 jenkins:
diff --git a/.ci/jenkins/dsl/jobs.groovy b/.ci/jenkins/dsl/jobs.groovy
index 41f0147b80..9310c7d75b 100644
--- a/.ci/jenkins/dsl/jobs.groovy
+++ b/.ci/jenkins/dsl/jobs.groovy
@@ -2,10 +2,10 @@
 * This file is describing all the Jenkins jobs in the DSL format (see 
https://plugins.jenkins.io/job-dsl/)
 * needed by the Kogito pipelines.
 *
-* The main part of Jenkins job generation is defined into the 
https://github.com/kiegroup/kogito-pipelines repository.
+* The main part of Jenkins job generation is defined into the 
https://github.com/apache/incubator-kie-kogito-pipelines repository.
 *
 * This file is making use of shared libraries defined in
-* 
https://github.com/kiegroup/kogito-pipelines/tree/main/dsl/seed/src/main/groovy/org/kie/jenkins/jobdsl.
+* 
https://github.com/apache/incubator-kie-kogito-pipelines/tree/main/dsl/seed/src/main/groovy/org/kie/jenkins/jobdsl.
 */
 
 import org.kie.jenkins.jobdsl.model.JenkinsFolder
@@ -179,7 +179,7 @@ Map getMultijobPRConfig(JenkinsFolder jobFolder) {
                 ]
             ], [
                 id: 'optaplanner-quickstarts',
-                repository: 'optaplanner-quickstarts',
+                repository: 'incubator-kie-optaplanner-quickstarts',
                 env : [
                     BUILD_MVN_OPTS_CURRENT: '-Dfull',
                     OPTAPLANNER_BUILD_MVN_OPTS_UPSTREAM: '-Dfull',
@@ -234,7 +234,6 @@ void createSetupBranchJob() {
     def jobParams = JobParamsUtils.getBasicJobParams(this, 'optaplanner', 
JobType.SETUP_BRANCH, "${jenkins_path}/Jenkinsfile.setup-branch", 'OptaPlanner 
Setup Branch')
     JobParamsUtils.setupJobParamsAgentDockerBuilderImageConfiguration(this, 
jobParams)
     jobParams.env.putAll([
-        REPO_NAME: 'optaplanner',
         JENKINS_EMAIL_CREDS_ID: "${JENKINS_EMAIL_CREDS_ID}",
 
         GIT_AUTHOR: "${GIT_AUTHOR_NAME}",
diff --git a/.ci/jenkins/dsl/test.sh b/.ci/jenkins/dsl/test.sh
index 1dd3b10fe1..5449b26385 100755
--- a/.ci/jenkins/dsl/test.sh
+++ b/.ci/jenkins/dsl/test.sh
@@ -22,13 +22,13 @@ fi
 
 git_author="$(echo ${git_url} | awk -F"${git_server_url}" '{print $2}' | awk 
-F. '{print $1}'  | awk -F/ '{print $1}')"
 
-export DSL_DEFAULT_MAIN_CONFIG_FILE_REPO="${git_author}"/optaplanner
-export DSL_DEFAULT_FALLBACK_MAIN_CONFIG_FILE_REPO=kiegroup/optaplanner
+export 
DSL_DEFAULT_MAIN_CONFIG_FILE_REPO="${git_author}"/incubator-kie-optaplanner
+export 
DSL_DEFAULT_FALLBACK_MAIN_CONFIG_FILE_REPO=apache/incubator-kie-optaplanner
 export DSL_DEFAULT_MAIN_CONFIG_FILE_PATH=.ci/jenkins/config/main.yaml
-export DSL_DEFAULT_BRANCH_CONFIG_FILE_REPO="${git_author}"/optaplanner
+export 
DSL_DEFAULT_BRANCH_CONFIG_FILE_REPO="${git_author}"/incubator-kie-optaplanner
 
 file=$(mktemp)
 # For more usage of the script, use ./test.sh -h
-curl -o ${file} 
https://raw.githubusercontent.com/kiegroup/kogito-pipelines/main/dsl/seed/scripts/seed_test.sh
+curl -o ${file} 
https://raw.githubusercontent.com/apache/incubator-kie-kogito-pipelines/main/dsl/seed/scripts/seed_test.sh
 chmod u+x ${file}
 ${file} $@
\ No newline at end of file
diff --git a/.ci/jenkins/project/Jenkinsfile.drools 
b/.ci/jenkins/project/Jenkinsfile.drools
index e3824c19b4..6c6c1d7471 100644
--- a/.ci/jenkins/project/Jenkinsfile.drools
+++ b/.ci/jenkins/project/Jenkinsfile.drools
@@ -2,9 +2,9 @@
 
 import org.kie.jenkins.MavenCommand
 
-droolsRepo = 'drools'
-optaplannerRepo = 'optaplanner'
-quickstartsRepo = 'optaplanner-quickstarts'
+droolsRepo = 'incubator-kie-drools'
+optaplannerRepo = 'incubator-kie-optaplanner'
+quickstartsRepo = 'incubator-kie-optaplanner-quickstarts'
 
 pipeline {
     agent {
@@ -140,7 +140,7 @@ void checkoutOptaplannerQuickstartsRepo() {
 
 void checkoutDroolsRepo() {
     dir(droolsRepo) {
-        checkout(githubscm.resolveRepository(droolsRepo, 'kiegroup', 
getDroolsBranch(), false))
+        checkout(githubscm.resolveRepository(droolsRepo, 'apache', 
getDroolsBranch(), false))
     }
 }
 
diff --git a/.ci/jenkins/project/Jenkinsfile.nightly 
b/.ci/jenkins/project/Jenkinsfile.nightly
index baccc16611..63234592fb 100644
--- a/.ci/jenkins/project/Jenkinsfile.nightly
+++ b/.ci/jenkins/project/Jenkinsfile.nightly
@@ -1,7 +1,7 @@
 import org.jenkinsci.plugins.workflow.libs.Library
 @Library('jenkins-pipeline-shared-libraries')_
 
-String optaPlannerRepository = 'optaplanner'
+String optaPlannerRepository = 'incubator-kie-optaplanner'
 String optaPlannerMainBranch = 'main'
 String optaPlanner9xBranch = '9.x'
 
diff --git a/.ci/jenkins/project/Jenkinsfile.post-release 
b/.ci/jenkins/project/Jenkinsfile.post-release
index 724ed3c557..4a4bfb8c21 100644
--- a/.ci/jenkins/project/Jenkinsfile.post-release
+++ b/.ci/jenkins/project/Jenkinsfile.post-release
@@ -4,8 +4,8 @@ import org.jenkinsci.plugins.workflow.libs.Library
 
 import org.kie.jenkins.MavenCommand
 
-String optaplannerRepository = 'optaplanner'
-String quickstartsRepository = 'optaplanner-quickstarts'
+String optaplannerRepository = 'incubator-kie-optaplanner'
+String quickstartsRepository = 'incubator-kie-optaplanner-quickstarts'
 String stableBranchName = 'stable'
 
 pipeline {
@@ -82,7 +82,7 @@ pipeline {
             }
         }
 
-        // Not migrated yet
+        // Optaplanner website is not migrated to Apache
         // stage('Update OptaPlanner website') {
         //     steps {
         //         script {
@@ -140,7 +140,7 @@ void sendErrorNotification() {
 //////////////////////////////////////////////////////////////////////////////
 
 boolean isNotTestingBuild() {
-    return getGitAuthor() == 'kiegroup'
+    return getGitAuthor() == 'apache'
 }
 
 String getProjectVersion() {
diff --git a/.ci/jenkins/project/Jenkinsfile.release 
b/.ci/jenkins/project/Jenkinsfile.release
index 7d76f8639e..50b036cb0a 100644
--- a/.ci/jenkins/project/Jenkinsfile.release
+++ b/.ci/jenkins/project/Jenkinsfile.release
@@ -42,8 +42,8 @@ pipeline {
                     sendNotification("Release Pipeline has 
started...\nOptaplanner version = ${getOptaPlannerVersion()}\n=> 
${env.BUILD_URL}")
 
                     // Safety measure to not publish to main JBoss
-                    if (getGitAuthor() != 'kiegroup' && 
!getArtifactsRepositoryParam()) {
-                        sendNotification("Git Author is different from 
`kiegroup` and no `ARTIFACTS_REPOSITORY` parameter has been provided. Are you 
sure you want to continue ? => ${env.BUILD_URL}input")
+                    if (getGitAuthor() != 'apache' && 
!getArtifactsRepositoryParam()) {
+                        sendNotification("Git Author is different from 
`apache` and no `ARTIFACTS_REPOSITORY` parameter has been provided. Are you 
sure you want to continue ? => ${env.BUILD_URL}input")
                         input message: 'Should the pipeline continue with no 
`ARTIFACTS_REPOSITORY` defined ?', ok: 'Yes'
                     }
                 }
diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md
index b76b3608fa..6be679386e 100644
--- a/.github/pull_request_template.md
+++ b/.github/pull_request_template.md
@@ -13,11 +13,11 @@ a section if that type of information is not available.
 ### Referenced pull requests
 
 <!-- Add URLs of all referenced pull requests if they exist. This is only 
required when making
-changes that span multiple kiegroup repositories and depend on each other. -->
+changes that span multiple apache repositories and depend on each other. -->
 <!-- Example:
 - https://github.com/kiegroup/droolsjbpm-build-bootstrap/pull/1234
-- https://github.com/kiegroup/drools/pull/3000
-- https://github.com/kiegroup/optaplanner/pull/899
+- https://github.com/apache/incubator-kie-drools/pull/3000
+- https://github.com/apache/incubator-kie-optaplanner/pull/899
 - etc.
 -->
 
@@ -106,7 +106,7 @@ How to retest this PR or trigger a specific build:
 
 ### CI Status
 
- You can check OptaPlanner repositories CI status from [Chain Status 
webpage](https://kiegroup.github.io/optaplanner/).
+ You can check OptaPlanner repositories CI status from [Chain Status 
webpage](https://apache.github.io/incubator-kie-optaplanner/).
 
 <details>
 <summary>
diff --git a/.github/workflows/full-downstream.yml 
b/.github/workflows/full-downstream.yml
index edb2bc13f1..1b677fcc47 100644
--- a/.github/workflows/full-downstream.yml
+++ b/.github/workflows/full-downstream.yml
@@ -43,7 +43,7 @@ jobs:
       - name: Build Chain
         uses: kiegroup/kie-ci/.ci/actions/build-chain@main
         with:
-          definition-file: 
https://raw.githubusercontent.com/${GROUP:kiegroup}/optaplanner/${BRANCH:main}/.ci/buildchain-config.yaml
+          definition-file: 
https://raw.githubusercontent.com/${GROUP:apache}/incubator-kie-optaplanner/${BRANCH:main}/.ci/buildchain-config.yaml
           annotations-prefix: ${{ runner.os }}-${{ matrix.java-version }}/${{ 
matrix.maven-version }}
           github-token: "${{ secrets.GITHUB_TOKEN }}"
           flow-type: full-downstream
diff --git a/.github/workflows/generate_status_page.yaml 
b/.github/workflows/generate_status_page.yaml
index 041fbdd694..4774a93861 100644
--- a/.github/workflows/generate_status_page.yaml
+++ b/.github/workflows/generate_status_page.yaml
@@ -4,7 +4,7 @@ on: workflow_dispatch
 
 jobs:
   generate-status-page:
-    if: github.repository == 'kiegroup/optaplanner'
+    if: github.repository == 'apache/incubator-kie-optaplanner'
     concurrency:
       group: generate-status-page
       cancel-in-progress: true
@@ -18,6 +18,6 @@ jobs:
       - name: Generate status page
         uses: kiegroup/chain-status/.ci/actions/generate-app@main
         with:
-          info-md-url: 
"https://raw.githubusercontent.com/kiegroup/optaplanner/main/.ci/chain-status-info.md";
+          info-md-url: 
"https://raw.githubusercontent.com/apache/incubator-kie-optaplanner/main/.ci/chain-status-info.md";
           github-token: "${{ secrets.GITHUB_TOKEN }}"
 
diff --git a/.github/workflows/generate_status_page_data.yaml 
b/.github/workflows/generate_status_page_data.yaml
index 65aeb72291..8af962d554 100644
--- a/.github/workflows/generate_status_page_data.yaml
+++ b/.github/workflows/generate_status_page_data.yaml
@@ -6,7 +6,7 @@ on:
     - cron: '0 * * * *'
 jobs:
   generate-status-page-data:
-    if: github.repository == 'kiegroup/optaplanner'
+    if: github.repository == 'apache/incubator-kie-optaplanner'
     concurrency:
       group: generate-status-page-data
       cancel-in-progress: true
@@ -20,11 +20,11 @@ jobs:
       - name: Generate status page data
         uses: kiegroup/chain-status/.ci/actions/generate-data@main
         with:
-          definition-file: 
https://raw.githubusercontent.com/kiegroup/optaplanner/main/.ci/builchain-config.yaml
+          definition-file: 
https://raw.githubusercontent.com/apache/incubator-kie-optaplanner/main/.ci/builchain-config.yaml
           title: Pull Request Status
           subtitle: OptaPlanner organization repositories CI Status
           base-branch-filter: main,8\.*
-          project-filter: kiegroup/opta.*$
+          project-filter: apache/incubator-kie-opta.*$
           created-by: GitHub Action
           created-url: https://github.com/${{ github.repository 
}}/actions/runs/${{ github.run_id }}
           github-token: "${{ secrets.GITHUB_TOKEN }}"
diff --git a/.github/workflows/jenkins-tests-PR.yml 
b/.github/workflows/jenkins-tests-PR.yml
index 09ff92f65c..c83cc488e9 100644
--- a/.github/workflows/jenkins-tests-PR.yml
+++ b/.github/workflows/jenkins-tests-PR.yml
@@ -20,6 +20,6 @@ jobs:
       uses: kiegroup/kie-ci/.ci/actions/dsl-tests@main
       with:
         project: optaplanner
-        main-config-file-repo: kiegroup/optaplanner
+        main-config-file-repo: apache/incubator-kie-optaplanner
         main-config-file-path: .ci/jenkins/config/main.yaml
-        branch-config-file-repo: kiegroup/optaplanner
+        branch-config-file-repo: apache/incubator-kie-optaplanner
diff --git a/.github/workflows/pull_request.yml 
b/.github/workflows/pull_request.yml
index c64e99628f..04e6d7ba82 100644
--- a/.github/workflows/pull_request.yml
+++ b/.github/workflows/pull_request.yml
@@ -59,9 +59,9 @@ jobs:
           # maven-assembly-plugin occasionally fails on heap space when 
building the ZIP in optaplanner-docs
           MAVEN_OPTS: "-Xmx2048m"
         with:
-          definition-file: 
https://raw.githubusercontent.com/${GROUP:kiegroup}/optaplanner/${BRANCH:main}/.ci/buildchain-config.yaml
+          definition-file: 
https://raw.githubusercontent.com/${GROUP:apache}/incubator-kie-optaplanner/${BRANCH:main}/.ci/buildchain-config.yaml
           annotations-prefix: ${{ runner.os }}-${{ matrix.java-version }}/${{ 
matrix.maven-version }}
-          starting-project: kiegroup/optaplanner
+          starting-project: apache/incubator-kie-optaplanner
           flow-type: ${{ env.FLOW_TYPE }}
           github-token: "${{ secrets.GITHUB_TOKEN }}"
       - name: Surefire Report


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to