diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 681f7ace7976fbad08e647232a252d26ee832e38..56b6f2fce20c8ad77c53de70d9dbaa484190d0e6 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,19 +1,4 @@
-stages:
-    - build
-
-create_badge_svg:
-  stage: build
-  image: python:3.6.6
-  tags:
-    - docker
+update_readme:
   script:
-    - echo "Python other dependencies installation"
-  after_script:
-    - pip install anybadge
-    - commits=$(git rev-list --all --count)
-    - anybadge -l commits -v $commits -f commits.svg -c green
-  artifacts:
-    paths:
-        - commits.svg
-    when: always
-    expire_in: 4 weeks
+    - echo $CI_PROJECT_NAME # Sanity check
+    - sed -ie "s/{THIS}/$CI_PROJECT_NAME/g" README.md
\ No newline at end of file