Skip to content

Commit

Permalink
chore: Update org to openedx for edx-platform references (#1724)
Browse files Browse the repository at this point in the history
  • Loading branch information
timmc-edx authored Feb 26, 2024
1 parent 23a47b0 commit 2b3a9e2
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dataeng/jobs/analytics/AnalyticsEmailOptin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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')
}
Expand Down
4 changes: 2 additions & 2 deletions dataeng/jobs/analytics/AnalyticsExporter.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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')
}
Expand Down Expand Up @@ -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')
}
Expand Down
2 changes: 1 addition & 1 deletion dataeng/resources/setup-platform-venv-legacy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion devops/jobs/CreateSandbox.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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.")
Expand Down
2 changes: 1 addition & 1 deletion devops/jobs/DeleteMergedGitBranches.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 2b3a9e2

Please sign in to comment.