From 5c0e461801b92cd7a9e09a04fe2b9bd7713e5f8a Mon Sep 17 00:00:00 2001 From: smallkirby Date: Wed, 15 Jan 2025 23:45:41 +0900 Subject: [PATCH] ci: fix typo Signed-off-by: smallkirby --- .github/scripts/cherry-picker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/cherry-picker.py b/.github/scripts/cherry-picker.py index b41ef48..eb8c152 100644 --- a/.github/scripts/cherry-picker.py +++ b/.github/scripts/cherry-picker.py @@ -35,7 +35,7 @@ def cherry_pick_to_branch(commit_sha, target_branch): # Cherry-pick the commit result = subprocess.run( - ["git", "cherry-pick", commit_sha], + ["git", "cherry-pick", "-m", "1", commit_sha], capture_output=True, text=True, )