Chore: Upgrade Jenkins-job-builder to 6.3.0
[releng/global-jjb.git] / shell / comment-to-gerrit.sh
1 #!/bin/bash -l
2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2019 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 "---> comment-to-gerrit.sh"
12 set -xe -o pipefail
13
14 if [[ -e gerrit_comment.txt ]] ; then
15     echo
16     echo "posting review comment to gerrit..."
17     echo
18     cat gerrit_comment.txt
19     echo
20     ssh -p 29418 "$GERRIT_HOST" \
21         "gerrit review -p $GERRIT_PROJECT \
22         -m '$(cat gerrit_comment.txt)' \
23         $GERRIT_PATCHSET_REVISION \
24         --notify NONE"
25 fi