From 485a89b9f60a79d8f63f63aa6090c73765fb7a42 Mon Sep 17 00:00:00 2001 From: Tim McCormack Date: Mon, 26 Feb 2024 19:35:33 +0000 Subject: [PATCH] chore: Update org to openedx for edx-platform references See https://github.com/edx/edx-arch-experiments/issues/558 --- dataeng/jobs/analytics/AnalyticsEmailOptin.groovy | 2 +- dataeng/jobs/analytics/AnalyticsExporter.groovy | 4 ++-- dataeng/resources/setup-platform-venv-legacy.sh | 2 +- devops/jobs/CreateSandbox.groovy | 2 +- devops/jobs/DeleteMergedGitBranches.groovy | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dataeng/jobs/analytics/AnalyticsEmailOptin.groovy b/dataeng/jobs/analytics/AnalyticsEmailOptin.groovy index 8773d6e0c..e207cb971 100644 --- a/dataeng/jobs/analytics/AnalyticsEmailOptin.groovy +++ b/dataeng/jobs/analytics/AnalyticsEmailOptin.groovy @@ -86,7 +86,7 @@ class AnalyticsEmailOptin { multiscm secure_scm(allVars) << { git { remote { - url('git@github.com:edx/edx-platform.git') + url('git@github.com:openedx/edx-platform.git') branch('$PLATFORM_BRANCH') credentials('1') } diff --git a/dataeng/jobs/analytics/AnalyticsExporter.groovy b/dataeng/jobs/analytics/AnalyticsExporter.groovy index 3a2c36c3f..ba7138271 100644 --- a/dataeng/jobs/analytics/AnalyticsExporter.groovy +++ b/dataeng/jobs/analytics/AnalyticsExporter.groovy @@ -35,7 +35,7 @@ class AnalyticsExporter { multiscm secure_scm(allVars) << { git { remote { - url('git@github.com:edx/edx-platform.git') + url('git@github.com:openedx/edx-platform.git') branch('$PLATFORM_BRANCH') credentials('1') } @@ -164,7 +164,7 @@ class AnalyticsExporter { multiscm secure_scm(allVars) << { git { remote { - url('git@github.com:edx/edx-platform.git') + url('git@github.com:openedx/edx-platform.git') branch('$PLATFORM_BRANCH') credentials('1') } diff --git a/dataeng/resources/setup-platform-venv-legacy.sh b/dataeng/resources/setup-platform-venv-legacy.sh index efd163ace..60e322764 100755 --- a/dataeng/resources/setup-platform-venv-legacy.sh +++ b/dataeng/resources/setup-platform-venv-legacy.sh @@ -13,7 +13,7 @@ pip install --exists-action w -r requirements/edx/pre.txt pip install --exists-action w -r requirements/edx/django.txt pip install --exists-action w -r requirements/edx/base.txt -# Remove if https://github.com/edx/edx-platform/pull/7465 has been merged +# Remove if https://github.com/openedx/edx-platform/pull/7465 has been merged if [[ -f requirements/edx/post.txt ]]; then pip install --exists-action w -r requirements/edx/post.txt fi diff --git a/devops/jobs/CreateSandbox.groovy b/devops/jobs/CreateSandbox.groovy index f282c3c1f..2c9519055 100644 --- a/devops/jobs/CreateSandbox.groovy +++ b/devops/jobs/CreateSandbox.groovy @@ -137,7 +137,7 @@ class CreateSandbox { booleanParam("edxapp",true,"") stringParam("edxapp_version","master","") - stringParam("edx_platform_repo","https://github.com/edx/edx-platform.git", + stringParam("edx_platform_repo","https://github.com/openedx/edx-platform.git", "If building a sandbox to test an external configuration PR, replace this with the fork of configuration.git's https URL") booleanParam("edxapp_container_enabled",false,"Checking this option will setup edx-platform in a Docker containers rather than being setup via Ansible.") booleanParam("edxapp_decrypt_and_copy_config_enabled",true,"Checking this option will decrypt and copy edxapp config file from configuration internal repo.") diff --git a/devops/jobs/DeleteMergedGitBranches.groovy b/devops/jobs/DeleteMergedGitBranches.groovy index 7f6514738..3af3b0e99 100644 --- a/devops/jobs/DeleteMergedGitBranches.groovy +++ b/devops/jobs/DeleteMergedGitBranches.groovy @@ -23,7 +23,7 @@ class DeleteMergedGitBranches{ multiscm{ git { remote { - url('git@github.com:edx/edx-platform.git') + url('git@github.com:openedx/edx-platform.git') branch('master') if (gitCredentialId) { credentials(gitCredentialId)