diff --git a/private-modules-overrides.yml b/private-modules-overrides.yml
index 3a44595364e9be6ab7d94c42bb7a8329e568e310..b1ef855b94cd6362d66b4331c5707065de3ddecd 100644
--- a/private-modules-overrides.yml
+++ b/private-modules-overrides.yml
@@ -2,6 +2,15 @@ variables:
   OPT_IN_TEST_NEXT_MINOR: 1
   OPT_IN_TEST_NEXT_MAJOR: 1
   RUN_JOB_UPGRADE_STATUS: 1
+
+.provide-info-yml-if-needed: &provide-info-yml-if-needed
+  - |
+    if ls *.info.yml 1> /dev/null 2>&1; then
+      echo "*.info.yml file exists"
+    else
+      echo "core_version_requirement: ^11" > dummy.info.yml
+    fi
+
 cspell:
   allow_failure: false
 phpcs:
@@ -13,10 +22,17 @@ phpstan (next minor):
 phpstan (next major):
   allow_failure: false
   before_script:
-    - touch dummy.info.yml
+    - *provide-info-yml-if-needed
 phpunit (next minor):
   allow_failure: false
 phpunit (next major):
   allow_failure: false
   before_script:
-    - touch dummy.info.yml
+    - *provide-info-yml-if-needed
+upgrade status:
+  rules:
+    - if: '$RUN_JOB_UPGRADE_STATUS == "0"'
+      when: never
+    - exists:
+        - "*.info.yml"
+      when: on_success