From 895436ad966afc6077ee2f8c86972ccb07c833ec Mon Sep 17 00:00:00 2001 From: hendrikKahl Date: Wed, 6 Jul 2022 12:49:15 +0200 Subject: [PATCH] add sign-off parameter to cncf conformance pr script Signed-off-by: hendrikKahl --- cmd/cncf-conformance-pr-creator/create_pr_k8s_conformance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/cncf-conformance-pr-creator/create_pr_k8s_conformance.py b/cmd/cncf-conformance-pr-creator/create_pr_k8s_conformance.py index 67a3506fe7..88225386ec 100755 --- a/cmd/cncf-conformance-pr-creator/create_pr_k8s_conformance.py +++ b/cmd/cncf-conformance-pr-creator/create_pr_k8s_conformance.py @@ -289,7 +289,7 @@ def commitAndPushChanges(gitHelper, branch_name): subprocess.run(["git", "add", "*e2e.log"]) subprocess.run(["git", "add", "*junit_01.xml"]) subprocess.run(["git", "add", "*README.md"]) - subprocess.run(["git", "commit", "-m", "gardener supporting new k8s release"]) + subprocess.run(["git", "commit", "-s", "-m", "gardener supporting new k8s release"]) gitHelper.push("@", f"refs/heads/{branch_name}") # subprocess.run(["git", "push", "origin", branch_name]) print('Branch "' + branch_name + '" was successfully created on https://github.com/' +