From 2aa7ba65d0296bfc16c2c08df7eee3ee34ae995d Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Oct 04 2017 14:17:03 +0000 Subject: signoff on commits for mass rebuild with pagure on dist-git pkg owners can enable a toggle switch to require all commits be signed off on. as per Developer Certificate of Origin (https://developercertificate.org/) it is good behaviour anyway. With a question being raised already in a pagure issue over using the feature to block mass rebuild builds https://pagure.io/pagure/issue/2459 Signed-off-by: Dennis Gilmore --- diff --git a/scripts/mass-rebuild.py b/scripts/mass-rebuild.py index aa339ba..3baff09 100755 --- a/scripts/mass-rebuild.py +++ b/scripts/mass-rebuild.py @@ -143,7 +143,7 @@ for pkg in pkgs: continue # git commit - commit = ['fedpkg', 'commit', '-p', '-m', comment] + commit = ['fedpkg', 'commit', '-s', '-p', '-m', comment] print('Committing changes for %s' % name) if runme(commit, 'commit', name, enviro, cwd=os.path.join(workdir, name)):