diff --git a/README.rst b/README.rst
index 20202f5cd75cd0948284d9840e686f8b06712be8..40f4818836cdcb11623a9eaef8f653b23ba725ec 100644
--- a/README.rst
+++ b/README.rst
@@ -326,8 +326,8 @@ Reporting Security Issues
 
 Please do not report security issues in public. Please email security@tcril.org.
 
-.. |ci-badge| image:: https://github.com/edx/xblock-lti-consumer/workflows/Python%20CI/badge.svg?branch=master
-    :target: https://github.com/edx/xblock-lti-consumer/actions?query=workflow%3A%22Python+CI%22
+.. |ci-badge| image:: https://github.com/openedx/xblock-lti-consumer/workflows/Python%20CI/badge.svg?branch=master
+    :target: https://github.com/openedx/xblock-lti-consumer/actions?query=workflow%3A%22Python+CI%22
     :alt: Test suite status
 
 .. |codecov-badge| image:: https://codecov.io/github/edx/xblock-lti-consumer/coverage.svg?branch=master
diff --git a/docs/decisions/0001-lti-extensions-plugin.rst b/docs/decisions/0001-lti-extensions-plugin.rst
index 305d907da146340d97ee4e75a2bd9dedb56b7296..fcaa9ebc2a8c933ce3d616d41cb3feb874d80669 100644
--- a/docs/decisions/0001-lti-extensions-plugin.rst
+++ b/docs/decisions/0001-lti-extensions-plugin.rst
@@ -37,8 +37,8 @@ consumer to allow LTI launches from outside the context of an XBlock, following
 While this is a smaller step than the implementation above, it allows LTI 1.1 launches on any LMS/Studio view, but doesn't implement
 the configuration storage.
 
-.. _`Merge LTI 1.3 support to master`: https://github.com/edx/xblock-lti-consumer/pull/82
-.. _`Add support for LTI embeds in course tabs and elsewhere`: https://github.com/edx/xblock-lti-consumer/pull/77
+.. _`Merge LTI 1.3 support to master`: https://github.com/openedx/xblock-lti-consumer/pull/82
+.. _`Add support for LTI embeds in course tabs and elsewhere`: https://github.com/openedx/xblock-lti-consumer/pull/77
 
 
 A few actions that need to be taken to achieve the desired architecture are outlined below:
@@ -93,7 +93,7 @@ Here is the new proposed folder structure::
 
 (Here are the `Inter App APIs`_ guidelines.)
 
-.. _`Inter App APIs`: https://github.com/edx/edx-platform/blob/master/docs/decisions/0002-inter-app-apis.rst
+.. _`Inter App APIs`: https://github.com/openedx/edx-platform/blob/master/docs/decisions/0002-inter-app-apis.rst
 
 Tech Debt
 =========
diff --git a/docs/decisions/0002-lti-1p3-variables.rst b/docs/decisions/0002-lti-1p3-variables.rst
index b68595397b2fd0e07eeb27f62ffa4fe853616cdd..a65ee078c29b9f59f858a515f518971fe5ac34b5 100644
--- a/docs/decisions/0002-lti-1p3-variables.rst
+++ b/docs/decisions/0002-lti-1p3-variables.rst
@@ -106,7 +106,7 @@ The user data claims are identifiers passed through the LTI message to send user
    * - sub
      - external user id (with the `lti` type)
      - Using the id provided by the external_user_id from openedx core.
-       See https://github.com/edx/edx-platform/blob/master/openedx/core/djangoapps/external_user_ids/docs/decisions/0001-externalid.rst
+       See https://github.com/openedx/edx-platform/blob/master/openedx/core/djangoapps/external_user_ids/docs/decisions/0001-externalid.rst
    * - name
      - User full name
      - User full name as defined in the spec, gated by a feature flag to avoid leaking PII to external tools.
diff --git a/docs/decisions/0005-lti-pii-sharing-flag.rst b/docs/decisions/0005-lti-pii-sharing-flag.rst
index ad186477d923793b4fd9bebc25221817995d35fd..129cd484d14bbde1803d019009fffbc9818aee67 100644
--- a/docs/decisions/0005-lti-pii-sharing-flag.rst
+++ b/docs/decisions/0005-lti-pii-sharing-flag.rst
@@ -14,15 +14,15 @@ about users, such as their username and email. Sharing such information allows
 for a smoother registration flow among other benefits.
 
 The `LTI XBlock has options
-<https://github.com/edx/xblock-lti-consumer/blob/edec2a68282a2a1fc2b2036e1989d60688fa6b19/lti_consumer/lti_xblock.py#L471-L487>`_
+<https://github.com/openedx/xblock-lti-consumer/blob/edec2a68282a2a1fc2b2036e1989d60688fa6b19/lti_consumer/lti_xblock.py#L471-L487>`_
 called ``ask_to_send_username`` and ``ask_to_send_email`` that enable sending
 such PII to the external tool. However, `by default these options are not
 visible
-<https://github.com/edx/xblock-lti-consumer/blob/edec2a68282a2a1fc2b2036e1989d60688fa6b19/lti_consumer/lti_xblock.py#L588-L599>`_
+<https://github.com/openedx/xblock-lti-consumer/blob/edec2a68282a2a1fc2b2036e1989d60688fa6b19/lti_consumer/lti_xblock.py#L588-L599>`_
 to course authors, and there is no way to send PII to LTI tools. In order to
 even enable these options to appear in the LTI XBlock configuration, you need
 to first set a `configuration flag
-<https://github.com/edx/edx-platform/blob/e19ba34f5a564285b3a20a7298c20ca640ca5aa0/cms/djangoapps/xblock_config/models.py#L38-L86>`_
+<https://github.com/openedx/edx-platform/blob/e19ba34f5a564285b3a20a7298c20ca640ca5aa0/cms/djangoapps/xblock_config/models.py#L38-L86>`_
 via Django admin in studio.
 
 This configuration flag unlocks the editing of the above fields after which
diff --git a/lti_consumer/models.py b/lti_consumer/models.py
index 2eb9ae013f3fae1af34bd57e4e982b775b0e2f28..1b83b0c28947fe9469b6cd64a648541986b1a0c7 100644
--- a/lti_consumer/models.py
+++ b/lti_consumer/models.py
@@ -50,7 +50,7 @@ class LtiConfiguration(models.Model):
     configuration data fetching them from XBlock fields.
 
     With the implementation of
-    https://github.com/edx/xblock-lti-consumer/blob/master/docs/decisions/0001-lti-extensions-plugin.rst
+    https://github.com/openedx/xblock-lti-consumer/blob/master/docs/decisions/0001-lti-extensions-plugin.rst
     this model will store all LTI configuration values as a formatted JSON.
 
     .. no_pii:
diff --git a/lti_consumer/plugin/compat.py b/lti_consumer/plugin/compat.py
index 5f653096d975c80a703e9b9c53cd4f3b2173cce1..a15dae65a28c631d8435c4ad42a15a0ce1240aef 100644
--- a/lti_consumer/plugin/compat.py
+++ b/lti_consumer/plugin/compat.py
@@ -223,7 +223,7 @@ def get_course_by_id(course_key):  # pragma: nocover
     TODO: Once the LMS has fully switched over to this new path [1],
     we can remove the legacy (LMS) import support here.
 
-    - [1] https://github.com/edx/edx-platform/pull/27289
+    - [1] https://github.com/openedx/edx-platform/pull/27289
     """
     # pylint: disable=import-outside-toplevel
     try:
diff --git a/setup.py b/setup.py
index e46cb530b516d3e6334e0968eb4cd0aec7dcb0c9..3ff3757fa6ef5aaca16630b8d31ef4b0fd96ec69 100644
--- a/setup.py
+++ b/setup.py
@@ -119,7 +119,7 @@ setup(
     packages=find_packages(),
     install_requires=load_requirements('requirements/base.in'),
     dependency_links=[
-        'https://github.com/edx/xblock-utils/tarball/c39bf653e4f27fb3798662ef64cde99f57603f79#egg=xblock-utils',
+        'https://github.com/openedx/xblock-utils/tarball/c39bf653e4f27fb3798662ef64cde99f57603f79#egg=xblock-utils',
     ],
     entry_points={
         'xblock.v1': [
@@ -134,7 +134,7 @@ setup(
     },
     package_data=package_data("lti_consumer", ["static", "templates", "public", "translations"]),
     keywords='lti consumer xblock',
-    url='https://github.com/edx/xblock-lti-consumer',
+    url='https://github.com/openedx/xblock-lti-consumer',
     classifiers=[
         'Development Status :: 5 - Production/Stable',
         'Framework :: Django',