diff --git a/plugins/default-redis.yml b/plugins/default-redis.yml index 19f1490b655ad41acc2e7c184b480166fa456f76..a1a5567b3b3b0c45c99c777d604deaf329915e22 100644 --- a/plugins/default-redis.yml +++ b/plugins/default-redis.yml @@ -1,5 +1,7 @@ include: + - remote: https://git-cdn.e15r.co/gitlab/ci/wordpress/-/raw/main/plugins/templates/stages.yml - remote: https://git-cdn.e15r.co/gitlab/ci/wordpress/-/raw/main/plugins/templates/variables.yml - remote: https://git-cdn.e15r.co/gitlab/ci/wordpress/-/raw/main/plugins/templates/cache.yml - remote: https://git-cdn.e15r.co/gitlab/ci/wordpress/-/raw/main/plugins/templates/before-script-redis.yml - remote: https://git-cdn.e15r.co/gitlab/ci/wordpress/-/raw/main/plugins/templates/matrix-redis.yml + - remote: https://git-cdn.e15r.co/gitlab/ci/wordpress/-/raw/main/plugins/templates/gitlab-tools.yml diff --git a/plugins/default.yml b/plugins/default.yml index fb0a242155d1b95e47efc005bc1099176539ee8a..39a5a9e6ce83ec63f6bd12afef29fd97b05dafb9 100644 --- a/plugins/default.yml +++ b/plugins/default.yml @@ -1,5 +1,7 @@ include: + - remote: https://git-cdn.e15r.co/gitlab/ci/wordpress/-/raw/main/plugins/templates/stages.yml - remote: https://git-cdn.e15r.co/gitlab/ci/wordpress/-/raw/main/plugins/templates/variables.yml - remote: https://git-cdn.e15r.co/gitlab/ci/wordpress/-/raw/main/plugins/templates/cache.yml - remote: https://git-cdn.e15r.co/gitlab/ci/wordpress/-/raw/main/plugins/templates/before-script.yml - remote: https://git-cdn.e15r.co/gitlab/ci/wordpress/-/raw/main/plugins/templates/matrix.yml + - remote: https://git-cdn.e15r.co/gitlab/ci/wordpress/-/raw/main/plugins/templates/gitlab-tools.yml diff --git a/plugins/templates/gitlab-tools.yml b/plugins/templates/gitlab-tools.yml new file mode 100644 index 0000000000000000000000000000000000000000..9f190a12e53cb225cf6b54d5e3e4582963c60f71 --- /dev/null +++ b/plugins/templates/gitlab-tools.yml @@ -0,0 +1,11 @@ +include: + - template: Security/SAST.gitlab-ci.yml + - template: Security/Dependency-Scanning.gitlab-ci.yml + +dependency_scanning: + before_script: echo "" + stage: security + +sast: + before_script: echo "" + stage: security diff --git a/plugins/templates/stages.yml b/plugins/templates/stages.yml new file mode 100644 index 0000000000000000000000000000000000000000..3ced010eb9b31291091faf664a1174d5214098df --- /dev/null +++ b/plugins/templates/stages.yml @@ -0,0 +1,7 @@ +stages: + - .pre + - build + - test + - security + - deploy + - .post