From 24ebe5fb1f24be11e5467d3cef24f9685053096a Mon Sep 17 00:00:00 2001 From: Zachariah Dzielinski <dzielinski_zachariah@bah.com> Date: Tue, 19 Jan 2021 11:30:53 -0700 Subject: [PATCH] ci: added linting for changelog and version --- .gitlab-ci.yml | 4 ++-- scripts/{commitlint.sh => lint_commits.sh} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename scripts/{commitlint.sh => lint_commits.sh} (100%) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4035fdd248..0278b535b6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -55,7 +55,7 @@ version: script: - ./scripts/lint_version.sh -commitlint: +commits: image: registry.dsop.io/platform-one/big-bang/pipeline-templates/pipeline-templates/pre-envs:ubi8.3 stage: .pre allow_failure: true @@ -63,7 +63,7 @@ commitlint: - dnf module install -y nodejs - npm install --only=dev - git fetch --all - - ./scripts/commitlint.sh + - ./scripts/lint_commits.sh pre vars: image: registry.dsop.io/platform-one/big-bang/pipeline-templates/pipeline-templates/pre-envs:ubi8.3 diff --git a/scripts/commitlint.sh b/scripts/lint_commits.sh similarity index 100% rename from scripts/commitlint.sh rename to scripts/lint_commits.sh -- GitLab