Delete deprecated files
[releng/global-jjb.git] / shell / git-validate-jira-urls.sh
diff --git a/shell/git-validate-jira-urls.sh b/shell/git-validate-jira-urls.sh
deleted file mode 100644 (file)
index 4a10772..0000000
+++ /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: <JIRAKEY>-<ISSUE#>, instead of URLs'
-    exit 1
-  fi
-fi