diff --git a/lib/platform/git/storage.ts b/lib/platform/git/storage.ts
index ff14d4c2cf04cd8976ab501aafce1085a1a0ed74..1784abbfc1ebc38eedebb8bba149b26910114fc4 100644
--- a/lib/platform/git/storage.ts
+++ b/lib/platform/git/storage.ts
@@ -533,7 +533,9 @@ export class Storage {
           }
         }
       }
-      const commitRes = await this._git.commit(message);
+      const commitRes = await this._git.commit(message, [], {
+        '--no-verify': true,
+      });
       const commit = commitRes?.commit || 'unknown';
       if (!force && !(await this.hasDiff(`origin/${branchName}`))) {
         logger.debug(
@@ -545,6 +547,7 @@ export class Storage {
       await this._git.push('origin', `${branchName}:${branchName}`, {
         '--force': true,
         '-u': true,
+        '--no-verify': true,
       });
       // Fetch it after create
       const ref = `refs/heads/${branchName}:refs/remotes/origin/${branchName}`;