diff --git a/changelogs/unreleased/27500-jobs-templates.yml b/changelogs/unreleased/27500-jobs-templates.yml
new file mode 100644
index 0000000000000000000000000000000000000000..cc26f4ff432cb44f222e51c7a984784a4a79c9c0
--- /dev/null
+++ b/changelogs/unreleased/27500-jobs-templates.yml
@@ -0,0 +1,5 @@
+---
+title: Add jobs folder to template categories to show on dropdown
+merge_request: 27500
+author: Daniel Gruesso
+type: other
diff --git a/lib/gitlab/template/gitlab_ci_yml_template.rb b/lib/gitlab/template/gitlab_ci_yml_template.rb
index 3e2bb11c35f1244bd346d711a3633a8b8fe224af..2cee5df68eba41875111d30a1550e81c189b2bfd 100644
--- a/lib/gitlab/template/gitlab_ci_yml_template.rb
+++ b/lib/gitlab/template/gitlab_ci_yml_template.rb
@@ -17,7 +17,8 @@ def categories
           {
             'General' => '',
             'Pages' => 'Pages',
-            'Auto deploy' => 'autodeploy'
+            'Auto deploy' => 'autodeploy',
+            'Jobs' => 'Jobs'
           }
         end