From 52fd811cb794a4600510b0e1e68d7926ea9104ec Mon Sep 17 00:00:00 2001 From: Erick Hitter <git-contrib@ethitter.com> Date: Sat, 29 Aug 2020 13:18:17 -0700 Subject: [PATCH] Fix includes Due to bug, everything must be referred to remotely. See https://gitlab.com/gitlab-org/gitlab/-/issues/31971 --- plugins/default.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/default.yml b/plugins/default.yml index 73e2f88..f010cbb 100644 --- a/plugins/default.yml +++ b/plugins/default.yml @@ -1,5 +1,5 @@ include: - - local: './templates/variables.yml' - - local: './templates/cache.yml' - - local: './templates/before_script.yml' - - local: './templates/matrix.yml' + - remote: https://git.ethitter.com/gitlab/ci/wordpress/-/raw/main/plugins/templates/variables.yml + - remote: https://git.ethitter.com/gitlab/ci/wordpress/-/raw/main/plugins/templates/cache.yml + - remote: https://git.ethitter.com/gitlab/ci/wordpress/-/raw/main/plugins/templates/before-script.yml + - remote: https://git.ethitter.com/gitlab/ci/wordpress/-/raw/main/plugins/templates/matrix.yml -- GitLab