]> git.ipfire.org Git - thirdparty/snapper.git/commitdiff
Less strict "rake osc:sr" 461/head
authorLadislav Slezák <lslezak@suse.cz>
Tue, 4 Dec 2018 12:23:34 +0000 (13:23 +0100)
committerLadislav Slezák <lslezak@suse.cz>
Tue, 4 Dec 2018 12:23:34 +0000 (13:23 +0100)
Do not require a bugzilla/fate number in the new changelog entries.

Rakefile

index 7e9f7845e545a4fa89987fb2dabb0e091a18b56d..8a1eabf6ce4d0ad470ae48daee9b6ec9bd2bb8af 100644 (file)
--- a/Rakefile
+++ b/Rakefile
@@ -6,7 +6,7 @@
 require "packaging/tasks"
 require "packaging/configuration"
 # skip 'tarball' task, it's redefined here
-Packaging::Tasks.load_tasks(:exclude => ["tarball.rake"])
+Packaging::Tasks.load_tasks(:exclude => ["tarball.rake", "check_changelog.rake"])
 
 require "yast/tasks"
 yast_submit = ENV.fetch("YAST_SUBMIT", "factory").to_sym
@@ -49,3 +49,10 @@ desc 'Build a tarball for OBS'
 task :tarball do
   sh "make -f Makefile.ci package"
 end
+
+# the "check:changelog" task is required by the "osc:sr" task
+namespace "check" do
+  task :changelog do
+    # do nothing, we do not require a bugzilla/fate number for new changelog entries
+  end
+end