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-kogito-serverless-operator.git
The following commit(s) were added to refs/heads/apache_migration by this push:
new c08521f Update `kiegroup` repository references to `apache` (#250)
c08521f is described below
commit c08521fe1beeead215ece1bdabaca61a7a00a12c
Author: Tristan Radisson <[email protected]>
AuthorDate: Mon Sep 18 09:21:44 2023 +0200
Update `kiegroup` repository references to `apache` (#250)
---
.ci/jenkins/Jenkinsfile | 2 +-
.ci/jenkins/Jenkinsfile.promote | 2 +-
.ci/jenkins/dsl/jobs.groovy | 5 ++---
.ci/jenkins/dsl/test.sh | 2 +-
.github/ISSUE_TEMPLATE/config.yml | 4 ++--
.github/workflows/jenkins-tests-PR.yml | 4 ++--
6 files changed, 9 insertions(+), 10 deletions(-)
diff --git a/.ci/jenkins/Jenkinsfile b/.ci/jenkins/Jenkinsfile
index 59468c9..55a7be2 100644
--- a/.ci/jenkins/Jenkinsfile
+++ b/.ci/jenkins/Jenkinsfile
@@ -37,7 +37,7 @@ pipeline {
sh ' git config --global user.email "[email protected]" '
sh ' git config --global user.name "kie user"'
- githubscm.checkoutIfExists('kogito-serverless-operator',
changeAuthor, changeBranch, 'kiegroup', changeTarget, true, ['token' :
'GITHUB_TOKEN', 'usernamePassword' : 'user-kie-ci10'])
+
githubscm.checkoutIfExists('incubator-kie-kogito-serverless-operator',
changeAuthor, changeBranch, 'apache', changeTarget, true, ['token' :
'GITHUB_TOKEN', 'usernamePassword' : 'user-kie-ci10'])
sh "set +x && oc login --token=\$(oc whoami -t)
--server=${OPENSHIFT_API} --insecure-skip-tls-verify"
}
diff --git a/.ci/jenkins/Jenkinsfile.promote b/.ci/jenkins/Jenkinsfile.promote
index d42257b..5e240a4 100644
--- a/.ci/jenkins/Jenkinsfile.promote
+++ b/.ci/jenkins/Jenkinsfile.promote
@@ -161,7 +161,7 @@ void promoteImage(String oldImageName, String newImageName)
{
void updateInternalGoModuleWithTag(String moduleName, String tagName) {
sh """
- go get
github.com/kiegroup/kogito-serverless-operator/${moduleName}@${githubscm.getTagCommitHash(tagName)}
+ go get
github.com/apache/incubator-kie-kogito-serverless-operator/${moduleName}@${githubscm.getTagCommitHash(tagName)}
go mod tidy
"""
}
diff --git a/.ci/jenkins/dsl/jobs.groovy b/.ci/jenkins/dsl/jobs.groovy
index ea52f64..3372013 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.JobType
@@ -44,7 +44,6 @@ void createSetupBranchJob() {
JobParamsUtils.setupJobParamsAgentDockerBuilderImageConfiguration(this,
jobParams)
jobParams.env.putAll([
JENKINS_EMAIL_CREDS_ID: "${JENKINS_EMAIL_CREDS_ID}",
- REPO_NAME: 'kogito-serverless-operator',
GIT_AUTHOR: "${GIT_AUTHOR_NAME}",
AUTHOR_CREDS_ID: "${GIT_AUTHOR_CREDENTIALS_ID}",
diff --git a/.ci/jenkins/dsl/test.sh b/.ci/jenkins/dsl/test.sh
index ad8af34..2d518eb 100755
--- a/.ci/jenkins/dsl/test.sh
+++ b/.ci/jenkins/dsl/test.sh
@@ -1,6 +1,6 @@
#!/bin/bash -e
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/.github/ISSUE_TEMPLATE/config.yml
b/.github/ISSUE_TEMPLATE/config.yml
index 22c4c17..ac8dcaf 100644
--- a/.github/ISSUE_TEMPLATE/config.yml
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -1,8 +1,8 @@
blank_issues_enabled: true
contact_links:
- name: GitHub Issues
- url: https://github.com/kiegroup/kogito-serverless-operator/issues
+ url:
https://github.com/apache/incubator-kie-kogito-serverless-operator/issues
about: GitHub Issues page in case you need to report a bug or wish to ask
for a new feature.
- name: Question
- url: https://github.com/kiegroup/kogito-serverless-operator/discussions
+ url:
https://github.com/apache/incubator-kie-kogito-serverless-operator/discussions
about: I have a question about how to use the operator.
diff --git a/.github/workflows/jenkins-tests-PR.yml
b/.github/workflows/jenkins-tests-PR.yml
index bf3815c..324a2de 100644
--- a/.github/workflows/jenkins-tests-PR.yml
+++ b/.github/workflows/jenkins-tests-PR.yml
@@ -17,6 +17,6 @@ jobs:
- name: DSL tests
uses: kiegroup/kie-ci/.ci/actions/dsl-tests@main
with:
- main-config-file-repo: kiegroup/kogito-pipelines
+ main-config-file-repo: apache/incubator-kie-kogito-pipelines
main-config-file-path: .ci/jenkins/config/main.yaml
- branch-config-file-repo: kiegroup/kogito-pipelines
+ branch-config-file-repo: apache/incubator-kie-kogito-pipelines
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]