Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update org to openedx for edx-platform references #1724

Merged
merged 1 commit into from
Feb 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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('[email protected]:edx/edx-platform.git')
url('[email protected]: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('[email protected]:edx/edx-platform.git')
url('[email protected]: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('[email protected]:edx/edx-platform.git')
url('[email protected]: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('[email protected]:edx/edx-platform.git')
url('[email protected]:openedx/edx-platform.git')
branch('master')
if (gitCredentialId) {
credentials(gitCredentialId)
Expand Down
Loading