diff options
author | Trevor Bramwell <tbramwell@linuxfoundation.org> | 2018-04-02 10:35:06 -0700 |
---|---|---|
committer | Trevor Bramwell <tbramwell@linuxfoundation.org> | 2018-04-02 10:35:14 -0700 |
commit | c7177a0024af425493b35febd16b6bc0462836d2 (patch) | |
tree | c9d7f7b1a3771a91d3a590462d5109ad2b1b0408 /jjb | |
parent | 92af7777ef51f8e8fe6164a27d2f69a75266dc0f (diff) |
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>
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/releng/releng-release-create-branch.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |