@@ -283,7 +283,7 @@ def main():
283
283
message += '\n \n Pull request description:\n \n ' + body .replace ('\n ' , '\n ' ) + '\n '
284
284
message += get_acks_from_comments (head_commit = subprocess .check_output ([GIT ,'log' ,'-1' ,'--pretty=format:%H' ,head_branch ]).decode ('utf-8' )[:6 ], comments = comments )
285
285
try :
286
- subprocess .check_call ([GIT ,'merge' ,'-q' ,'--commit' ,'--no-edit' ,'--no-ff' ,'-m' ,message .encode ('utf-8' ),head_branch ])
286
+ subprocess .check_call ([GIT ,'merge' ,'-q' ,'--commit' ,'--no-edit' ,'--no-ff' ,'--no-gpg-sign' , '- m' ,message .encode ('utf-8' ),head_branch ])
287
287
except subprocess .CalledProcessError :
288
288
print ("ERROR: Cannot be merged cleanly." ,file = stderr )
289
289
subprocess .check_call ([GIT ,'merge' ,'--abort' ])
@@ -307,7 +307,7 @@ def main():
307
307
print ("ERROR: Unable to compute tree hash" )
308
308
sys .exit (4 )
309
309
try :
310
- subprocess .check_call ([GIT ,'commit' ,'--amend' ,'-m' ,message .encode ('utf-8' )])
310
+ subprocess .check_call ([GIT ,'commit' ,'--amend' ,'--no-gpg-sign' , '- m' ,message .encode ('utf-8' )])
311
311
except subprocess .CalledProcessError :
312
312
print ("ERROR: Cannot update message." , file = stderr )
313
313
sys .exit (4 )
0 commit comments