From 5248c2783cc1c7850a36d8f3b5c5935e25e8aa97 Mon Sep 17 00:00:00 2001
From: Pierre Smeyers <pierre.smeyers@gmail.com>
Date: Mon, 16 Oct 2023 18:05:24 +0200
Subject: [PATCH] fix: declare all TBC stages

---
 templates/gitlab-ci-sonar.yml | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/templates/gitlab-ci-sonar.yml b/templates/gitlab-ci-sonar.yml
index 898fa12..b61c4b3 100644
--- a/templates/gitlab-ci-sonar.yml
+++ b/templates/gitlab-ci-sonar.yml
@@ -74,9 +74,17 @@ variables:
   # default integration ref name (pattern)
   INTEG_REF: '/^develop$/'
 
-# allowed stages depend on your template type (see: to-be-continuous.gitlab.io/doc/dev-guidelines/#stages)
 stages:
+  - build
   - test
+  - package-build
+  - package-test
+  - infra
+  - deploy
+  - acceptance
+  - publish
+  - infra-prod
+  - production
 
 .sonar-scripts: &sonar-scripts |
   # BEGSCRIPT
-- 
GitLab