Fix rtd merge job to handle new tag uploaded
[releng/global-jjb.git] / shell / git-validate-jira-urls.sh
1 #!/bin/bash
2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2017 The Linux Foundation and others.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Eclipse Public License v1.0
8 # which accompanies this distribution, and is available at
9 # http://www.eclipse.org/legal/epl-v10.html
10 ##############################################################################
11 echo "---> git-validate-jira-urls.sh"
12 # This script will make sure that there are no JIRA URLs in the commit
13 # message. JIRA URLs will break the its-jira plugin
14
15 # Ensure we fail the job if any steps fail.
16 # Do not treat undefined variables as errors as in this case we are allowed
17 # to have JIRA_URL undefined
18 set -e -o pipefail
19 set +u
20
21 if [ -n "${JIRA_URL}" ];
22 then
23   BASE_URL=$(echo "$JIRA_URL" | awk -F'/' '{print $3}')
24   JIRA_LINK=$(git rev-list --format=%B --max-count=1 HEAD | grep -io "http[s]*://$BASE_URL/" || true)
25   if [[ -n "$JIRA_LINK" ]]
26   then
27     echo 'Remove JIRA URLs from commit message'
28     echo 'Add jira references as: Issue: <JIRAKEY>-<ISSUE#>, instead of URLs'
29     exit 1
30   fi
31 fi