From 62d957905b05f8f55b95f2ae89e283a4fafab52b Mon Sep 17 00:00:00 2001
From: "Saralegui Vallejo, Unai" <unai.saralegui@tecnalia.com>
Date: Mon, 12 Apr 2021 17:15:38 +0200
Subject: [PATCH] Create README.md

---
 maven-packages/README.md | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)
 create mode 100644 maven-packages/README.md

diff --git a/maven-packages/README.md b/maven-packages/README.md
new file mode 100644
index 0000000..6eef839
--- /dev/null
+++ b/maven-packages/README.md
@@ -0,0 +1,36 @@
+# Include jobs from external YAML files
+
+You can include the jobs in this repository's YAML files as follows:
+
+```yml
+include:
+  - https://git.code.tecnalia.com/digicon-webxr-store/ci-files/-/raw/master/maven-packages/build.yml
+  - https://git.code.tecnalia.com/digicon-webxr-store/ci-files/-/raw/master/maven-packages/tests.yml
+  - https://git.code.tecnalia.com/digicon-webxr-store/ci-files/-/raw/master/maven-packages/deploy.yml
+```
+
+You can include the execution order in yout .gitlab-ci.yml file as follows:
+
+```yml
+stages:
+  - build
+  - test
+  - deploy
+```
+
+## Example
+
+An example of a valid .gitlab-ci.yml can be:
+
+```yml
+include:
+  - https://git.code.tecnalia.com/digicon-webxr-store/ci-files/-/raw/master/maven-packages/build.yml
+  - https://git.code.tecnalia.com/digicon-webxr-store/ci-files/-/raw/master/maven-packages/tests.yml
+  - https://git.code.tecnalia.com/digicon-webxr-store/ci-files/-/raw/master/maven-packages/deploy.yml
+
+stages:
+  - build
+  - test
+  - deploy
+
+```
-- 
GitLab