From 6157792e52f3e9d9e01c8d3d601a201fded90a3f Mon Sep 17 00:00:00 2001
From: Timo Furrer <tfurrer@gitlab.com>
Date: Fri, 19 Jan 2024 08:37:35 +0100
Subject: [PATCH] Rename warning job

---
 backports/.Base.gitlab-ci.yml                           | 2 +-
 backports/OpenTofu.gitlab-ci.yml                        | 4 ++--
 backports/OpenTofu/Base.gitlab-ci.yml                   | 2 +-
 tests/integration-tests/BackportTemplates.gitlab-ci.yml | 4 ++--
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/backports/.Base.gitlab-ci.yml b/backports/.Base.gitlab-ci.yml
index 3c11fbb..808bf2e 100644
--- a/backports/.Base.gitlab-ci.yml
+++ b/backports/.Base.gitlab-ci.yml
@@ -24,7 +24,7 @@ variables:
   # The name of the state file used by the GitLab Managed Terraform state backend
   TF_STATE_NAME: default
 
-.opentofu:suggest-component:
+.opentofu:use-component-instead-of-template:
   stage: validate
   needs: []
   allow_failure: true
diff --git a/backports/OpenTofu.gitlab-ci.yml b/backports/OpenTofu.gitlab-ci.yml
index b0510cd..9938e27 100644
--- a/backports/OpenTofu.gitlab-ci.yml
+++ b/backports/OpenTofu.gitlab-ci.yml
@@ -17,8 +17,8 @@ include:
 
 stages: [validate, build, deploy]
 
-suggest-component:
-  extends: .opentofu:suggest-component
+use-component-instead-of-template:
+  extends: .opentofu:use-component-instead-of-template
 
 fmt:
   extends: .opentofu:fmt
diff --git a/backports/OpenTofu/Base.gitlab-ci.yml b/backports/OpenTofu/Base.gitlab-ci.yml
index 1c00ff4..774ff5d 100644
--- a/backports/OpenTofu/Base.gitlab-ci.yml
+++ b/backports/OpenTofu/Base.gitlab-ci.yml
@@ -24,7 +24,7 @@ variables:
   # The name of the state file used by the GitLab Managed Terraform state backend
   TF_STATE_NAME: default
 
-.opentofu:suggest-component:
+.opentofu:use-component-instead-of-template:
   stage: validate
   needs: []
   allow_failure: true
diff --git a/tests/integration-tests/BackportTemplates.gitlab-ci.yml b/tests/integration-tests/BackportTemplates.gitlab-ci.yml
index 2565185..a823182 100644
--- a/tests/integration-tests/BackportTemplates.gitlab-ci.yml
+++ b/tests/integration-tests/BackportTemplates.gitlab-ci.yml
@@ -5,8 +5,8 @@ stages: [validate, test, build, deploy, cleanup]
 
 # Required to run everything immediately, instead of manually.
 
-suggest-component:
-  extends: .opentofu:suggest-component
+use-component-instead-of-template:
+  extends: .opentofu:use-component-instead-of-template
 
 fmt:
   extends: .opentofu:fmt
-- 
GitLab