From 3d780f42e92e6bda87c1f56d15bb15cb61a5ca60 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ladislav=20Slez=C3=A1k?= Date: Tue, 4 Dec 2018 13:23:34 +0100 Subject: [PATCH] Less strict "rake osc:sr" Do not require a bugzilla/fate number in the new changelog entries. --- Rakefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 7e9f7845..8a1eabf6 100644 --- 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 -- 2.47.3