From c39eebba320916ac0057b197bc906b0688d72430 Mon Sep 17 00:00:00 2001
From: jurgenhaas <juergen.haas@lakedrops.com>
Date: Wed, 8 Nov 2023 14:55:28 +0100
Subject: [PATCH] Provide a template to run drupal.org pipelines on private
 Drupal projects

---
 private-modules.yml | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)
 create mode 100644 private-modules.yml

diff --git a/private-modules.yml b/private-modules.yml
new file mode 100644
index 0000000..4690047
--- /dev/null
+++ b/private-modules.yml
@@ -0,0 +1,30 @@
+include:
+  - project: 'gitlab-ci-cd/composer-packages'
+    ref: main
+    file: '/composer-packages.yml'
+  - remote: https://git.drupalcode.org/project/gitlab_templates/-/raw/1.0.x/includes/include.drupalci.main.yml
+  - remote: https://git.drupalcode.org/project/gitlab_templates/-/raw/1.0.x/includes/include.drupalci.variables.yml
+  - remote: https://git.drupalcode.org/project/gitlab_templates/-/raw/1.0.x/includes/include.drupalci.workflows.yml
+
+stages:
+  - build
+  - validate
+  - test
+  - package
+
+default:
+  tags:
+    - default
+
+workflow:
+  rules:
+    - if: $CI_COMMIT_BRANCH == "develop"
+
+variables:
+  SKIP_ESLINT: '1'
+
+phpcs:
+  allow_failure: false
+
+phpstan:
+  allow_failure: false
-- 
GitLab