X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Fgit-validate-jira-urls.sh;fp=shell%2Fgit-validate-jira-urls.sh;h=0000000000000000000000000000000000000000;hb=2d6b63d9a574b952554605f1a89beb31202e86d6;hp=4a107722499423246c24f70429a6782fc91c4c79;hpb=3702b8680891a0392a53a2e2ce8060fb75b2bbdf;p=releng%2Fglobal-jjb.git diff --git a/shell/git-validate-jira-urls.sh b/shell/git-validate-jira-urls.sh deleted file mode 100644 index 4a107722..00000000 --- a/shell/git-validate-jira-urls.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/bash -# SPDX-License-Identifier: EPL-1.0 -############################################################################## -# Copyright (c) 2017 The Linux Foundation and others. -# -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Eclipse Public License v1.0 -# which accompanies this distribution, and is available at -# http://www.eclipse.org/legal/epl-v10.html -############################################################################## -echo "---> git-validate-jira-urls.sh" -# This script will make sure that there are no JIRA URLs in the commit -# message. JIRA URLs will break the its-jira plugin - -# Ensure we fail the job if any steps fail. -# Do not treat undefined variables as errors as in this case we are allowed -# to have JIRA_URL undefined -set -e -o pipefail -set +u - -if [ -n "${JIRA_URL}" ]; -then - BASE_URL=$(echo "$JIRA_URL" | awk -F'/' '{print $3}') - JIRA_LINK=$(git rev-list --format=%B --max-count=1 HEAD | grep -io "http[s]*://$BASE_URL/" || true) - if [[ -n "$JIRA_LINK" ]] - then - echo 'Remove JIRA URLs from commit message' - echo 'Add jira references as: Issue: -, instead of URLs' - exit 1 - fi -fi