diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000000000000000000000000000000000000..42090a7e93683d2dee7b12afc910cc829ed6408f
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,61 @@
+variables:
+    GIT_SUBMODULE_STRATEGY: recursive
+    GIT_SUBMODULE_FORCE_HTTPS: "true"
+    SECURE_FILES_DOWNLOAD_PATH: './'
+
+    DOC_CHANGELOG_FILE: ZolaApp/content/changelog/1_global.md
+
+    DOC_FILE_BEGIN: '+++
+title = "The Dojo Project"
+description = "Global changelog of The Dojo Project."
+slug = "global"
+weight = 1
+template = "docs/page.html"
+[extra]
+lead = "Global changelog of The Dojo Project."
+toc = true
+top = false
++++
+'
+
+stages:
+    - release
+
+release:readme:
+    stage: release
+    tags:
+        - release
+    image: ubuntu:latest
+    script:
+        # Install dependencies
+        - apt-get update -y
+        - apt-get install -y openssh-client git unzip sshpass --fix-missing
+
+        # Add SSH key
+        - echo "$DOC_GIT_SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - > /dev/null
+
+        - mkdir -p ~/.ssh
+        - chmod 700 ~/.ssh
+
+        - echo "$DOC_GIT_SSH_PUBLIC_KEY" >> ~/.ssh/id_rsa.pub
+        - echo "$DOC_GIT_SSH_PRIVATE_KEY" >> ~/.ssh/id_rsa
+
+        - '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
+
+        # Set git config
+        - git config --global user.email "dojo@minelli.me"
+        - git config --global user.name "[DojoProject] Gitlab CI"
+
+        # Pull repo
+        - git clone ssh://git@ssh.hesge.ch:10572/dojo_project/projects/ui/dojodoc.git
+
+        # Do something after pulling your repo
+        - echo "${DOC_FILE_BEGIN}$(cat CHANGELOG.md)" > dojodoc/${DOC_CHANGELOG_FILE}
+
+        # Push repo changes into current repo
+        - cd dojodoc
+        - git add ${DOC_CHANGELOG_FILE}
+        - git commit -m "Commit message here :)" || echo "No changes, nothing to commit!"
+        - git push
+    rules:
+        -   if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6450b2f546f1a961ccaaad5b5e72541251bfbc22..54a4a881ea5caf7b8a21af1db8efbe4a2110504d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -15,7 +15,7 @@
 -->
 
 
-## 3.6.0 (???)
+## 3.6.0 (Upcoming)
 
 ### ✨ Feature
 - Add features related to corrige (commentary, commit specific link / update, delete link)