Add 'Signed-off-by' to automated Jenkins job patch 27/54727/1
authorTrevor Bramwell <tbramwell@linuxfoundation.org>
Mon, 2 Apr 2018 17:35:06 +0000 (10:35 -0700)
committerTrevor Bramwell <tbramwell@linuxfoundation.org>
Mon, 2 Apr 2018 17:35:14 +0000 (10:35 -0700)
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

index 8375560..92be0e6 100644 (file)
@@ -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