From c7374b5aed9af16ecd79190c232e1c61588b1246 Mon Sep 17 00:00:00 2001 From: Arpit Roopchandani <17565234+whoisarpit@users.noreply.github.com> Date: Tue, 21 Jan 2025 17:01:39 +0800 Subject: [PATCH] Adding --no-verify to git commit to ensure precommit hooks don't cause issues --- patchwork/steps/CommitChanges/CommitChanges.py | 1 + 1 file changed, 1 insertion(+) diff --git a/patchwork/steps/CommitChanges/CommitChanges.py b/patchwork/steps/CommitChanges/CommitChanges.py index 3cd71c617..f4c63c40c 100644 --- a/patchwork/steps/CommitChanges/CommitChanges.py +++ b/patchwork/steps/CommitChanges/CommitChanges.py @@ -96,6 +96,7 @@ def commit_with_msg(repo: Repo, msg: str): with ephemeral.context(): repo.git.commit( + "--no-verify", "--author", "patched.codes[bot]<298395+patched.codes[bot]@users.noreply.github.com>", "-m",