From c7177a0024af425493b35febd16b6bc0462836d2 Mon Sep 17 00:00:00 2001
From: Trevor Bramwell <tbramwell@linuxfoundation.org>
Date: Mon, 2 Apr 2018 10:35:06 -0700
Subject: Add 'Signed-off-by' to automated Jenkins job patch

All commits require a signed-off-by line to be accepted by Gerrit, and
automated patches are no exception.

Change-Id: I54179c47e33b5088e4e3c3d5752ccb3560f2face
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
---
 jjb/releng/releng-release-create-branch.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'jjb')

diff --git a/jjb/releng/releng-release-create-branch.sh b/jjb/releng/releng-release-create-branch.sh
index 83755608e..92be0e637 100644
--- a/jjb/releng/releng-release-create-branch.sh
+++ b/jjb/releng/releng-release-create-branch.sh
@@ -31,7 +31,7 @@ for release_file in $RELEASE_FILES; do
     NEW_FILES=$(git status --porcelain --untracked=no | cut -c4-)
     if [ -n "$NEW_FILES" ]; then
       git add $NEW_FILES
-      git commit -m "Create Stable Branch Jobs for $(basename $release_file .yaml)"
+      git commit -sm "Create Stable Branch Jobs for $(basename $release_file .yaml)"
       git push origin HEAD:refs/for/master
     fi
 done
-- 
cgit