lf-ci-jobs: Add git-validate-jira-urls.sh
[releng/global-jjb.git] / shell / git-validate-jira-urls.sh
1 #!/bin/bash
2 # @License EPL-1.0 <http://spdx.org/licenses/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
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 set -e -o pipefail
16 set +u
17
18 JIRA_LINK=$(git rev-list --format=%B --max-count=1 HEAD | grep -io 'http[s]*://jira\..*')
19 if [[ ! -z "$JIRA_LINK" ]]
20 then
21   echo 'Remove JIRA URLs from commit message'
22   echo 'Add jira references as: Issue: <JIRAKEY>-<ISSUE#>, instead of URLs'
23   exit 1
24 fi