diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
old mode 100644
new mode 100755
index dc742e448194c09414632d1fbc1ded830c7283f6..64fbe9e47d96f30bea832bbd5eefe94547f7a0a9
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -12,11 +12,11 @@
 # - Buy me a coffee: https://bit.ly/34jPKcE
 # - Hire me as a freelance for any Drupal related work
 # - Promote me to any company looking for any Drupal related work
-# - Help me with testing / documentation / grammar fixes / use cases
+# - Help me with testing / documentation / grammar fixes / use cases...
 #
 ################################################################################
 
-# The ref is relative to the version of the project to use, best to use a tag.
+# The ref is relative to the version of the project to use.
 include:
   # If hosted on gitlab.com.
   # - project: 'mog33/gitlab-ci-drupal'
@@ -24,7 +24,7 @@ include:
   #   file: '/.gitlab-ci/.gitlab-ci-template.yml'
   # If hosted on an other Gitlab instance.
   # - remote: 'https://gitlab.com/mog33/gitlab-ci-drupal/-/raw/3.x-dev/.gitlab-ci/.gitlab-ci-template.yml'
-  - remote: 'https://git.startx.be/forks/gitlab-ci-drupal/-/raw/3.x-dev/.gitlab-ci/.gitlab-ci-template.yml'
+  - remote: 'https://git.startx.be/forks/gitlab-ci-drupal/-/raw/startx/.gitlab-ci/.gitlab-ci-template.yml'
 
 # If needed by your Gitlab-ci instance, you can set global tags for all jobs.
 # default:
@@ -46,11 +46,12 @@ variables:
   extends: .default_variables
 
   # Global config remote files ref.
-  # MUST be the same as include: ref: from above.
+  # SHOULD be the same as 'include: ref:' from above.
   CI_REF: 3.x-dev
 
-  # Set a version, default is Drupal 8.9, can be 9.0 or 9.1.
-  # CI_DRUPAL_VERSION: "8.9"
+  # Minor Drupal version to work with, limited to tags on
+  # https://hub.docker.com/r/mogtofu33/drupal8ci/tags?name=3.x
+  # CI_DRUPAL_VERSION: "9.2"
 
   ##############################################################################
   # Tests disabled by default because need a specific setup / configuration.
@@ -58,10 +59,14 @@ variables:
   # Only needed if you have Behat tests, comment or set to 0 to enable.
   # https://mog33.gitlab.io/gitlab-ci-drupal/advanced-usage/#behat-tests
   SKIP_TEST_BEHAT: 1
+  # Can use a profile setup or a dump file in dump/
+  BEHAT_INSTALL_PROFILE: "minimal"
 
-  # Accessibility tests, need a profile and setup.
+  # Accessibility tests.
   # https://mog33.gitlab.io/gitlab-ci-drupal/advanced-usage/#accessibility-with-pa11y
   SKIP_TEST_PA11Y: 1
+  # Can use a profile setup or a dump file in dump/
+  PA11Y_INSTALL_PROFILE: "minimal"
 
   # Only if you have Nightwatch tests in your code.
   # https://mog33.gitlab.io/gitlab-ci-drupal/advanced-usage/#nightwatchjs
@@ -74,6 +79,9 @@ variables:
   # https://mog33.gitlab.io/gitlab-ci-drupal/advanced-usage/#phpunit-tests
   PHPUNIT_TESTS: "custom"
 
+  # Specify a group of tests to run rather than all tests in the suite.
+  # PHPUNIT_GROUP: my_group_1,my_group_2
+
   ##############################################################################
   # Override default variables for a module.
   #
@@ -101,7 +109,7 @@ variables:
   SKIP_LINT_JS: 1
   # If you don't have any twig files, you can skip with
   SKIP_LINT_TWIG: 1
-  #
+
   ##############################################################################
 
   ##############################################################################