diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 7607e98d89fa0afbb3d47dd8ffaae7208f46390b..9eb53ac79df11f4b8d8e65af77067231ebb387a8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,11 +1,11 @@
 include:
-  - project: 'Orange-OpenSource/tbc/tools/gitlab-ci'
+  - project: 'to-be-continuous/tools/gitlab-ci'
     ref: 'master'
     file: '/templates/validation.yml'
-  - project: 'Orange-OpenSource/tbc/kicker'
+  - project: 'to-be-continuous/kicker'
     ref: 'master'
     file: '/templates/validation.yml'
-  - project: 'Orange-OpenSource/tbc/bash'
+  - project: 'to-be-continuous/bash'
     ref: '1.0.0'
     file: 'templates/gitlab-ci-bash.yml'
 
diff --git a/CONTRIBUTE.md b/CONTRIBUTE.md
index 536de2d62f9fc577d2460e88cea7c8b2dd3c6d5d..5a24023bf705aac9821202c2ef30e06071db25e5 100644
--- a/CONTRIBUTE.md
+++ b/CONTRIBUTE.md
@@ -70,8 +70,8 @@ Git commits in _to be continuous_ shall be:
 1. **atomic** (1 commit `=` 1 and only 1 _thing_),
 2. **semantic** (using [semantic-release commit message syntax](https://semantic-release.gitbook.io/semantic-release/#commit-message-format)).
 
-You'll find extensive information about Git commit conventions on the [reference documentation website](https://orange-opensource.gitlab.io/tbc/doc/dev/workflow/#git-commit-guidelines).
+You'll find extensive information about Git commit conventions on the [reference documentation website](https://to-be-continuous.gitlab.io/doc/dev/workflow/#git-commit-guidelines).
 
 ### Coding Guidelines
 
-The extensive _to be continuous_ coding guidelines can be found on the [reference documentation website](https://orange-opensource.gitlab.io/tbc/doc/dev/guidelines/).
+The extensive _to be continuous_ coding guidelines can be found on the [reference documentation website](https://to-be-continuous.gitlab.io/doc/dev/guidelines/).
diff --git a/README.md b/README.md
index 9f49065663f1346235efa718267c0671a8ac6b03..6ca3a8579a3e053d43b185b907f50bc718783ba3 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
 
 This project implements a generic GitLab CI template for [Python](https://www.python.org/).
 
-It provides several features, usable in different modes (by configuration) following those [recommendations](orange-opensource.gitlab.io/tbc/doc/usage/)
+It provides several features, usable in different modes (by configuration) following those [recommendations](to-be-continuous.gitlab.io/doc/usage/)
 
 ## Usage
 
@@ -10,7 +10,7 @@ In order to include this template in your project, add the following to your `gi
 
 ```yaml
 include:
-  - project: 'Orange-OpenSource/tbc/python'
+  - project: 'to-be-continuous/python'
     ref: '1.1.0'
     file: '/templates/gitlab-ci-python.yml'
 ```
diff --git a/templates/gitlab-ci-python.yml b/templates/gitlab-ci-python.yml
index 572ac4a0f7098be6da24219d10ddb2c576cda537..f9f12ce9faa53b32801bd453209b19f03ff9c886 100644
--- a/templates/gitlab-ci-python.yml
+++ b/templates/gitlab-ci-python.yml
@@ -1,5 +1,5 @@
 # =========================================================================================
-# Copyright (C) 2021 Orange
+# Copyright (C) 2021 Orange & contributors
 #
 # This program is free software; you can redistribute it and/or modify it under the terms 
 # of the GNU Lesser General Public License as published by the Free Software Foundation; 
@@ -288,7 +288,7 @@ variables:
   }
 
   function get_latest_template_version() {
-    tag_json=$(wget -T 5 -q -O - "$CI_API_V4_URL/projects/Orange-OpenSource%2Ftbc%2F$1/repository/tags?per_page=1" || echo "")
+    tag_json=$(wget -T 5 -q -O - "$CI_API_V4_URL/projects/to-be-continuous%2F$1/repository/tags?per_page=1" || echo "")
     echo "$tag_json" | sed -rn 's/^.*"name":"([^"]*)".*$/\1/p'
   }
 
@@ -316,7 +316,7 @@ variables:
 .python-base:
   image: $PYTHON_IMAGE
   services:
-    - name: "$CI_REGISTRY/orange-opensource/tbc/tools/tracking:master"
+    - name: "$CI_REGISTRY/to-be-continuous/tools/tracking:master"
       command: ["--service", "python", "1.1.0"]
   # Cache downloaded dependencies and plugins between builds.
   # To keep cache across branches add 'key: "$CI_JOB_NAME"'