summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThom May <thom@chef.io>2017-02-08 10:29:10 +0100
committerLamont Granquist <lamont@scriptkiddie.org>2017-02-08 13:49:12 -0800
commita2da47b4817a8ac5e719d93a9cbc5c6400bcd32d (patch)
treeae44ebbf1cd6b09aa6735c6e083a693784ba9902
parentf1c4440a9b64887e5dd207cf93ad0442f6dbecaa (diff)
downloadchef-a2da47b4817a8ac5e719d93a9cbc5c6400bcd32d.tar.gz
ignore things properly
Signed-off-by: Thom May <thom@chef.io>
-rw-r--r--tasks/changelog.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/tasks/changelog.rb b/tasks/changelog.rb
index bd922d6f9c..710205a1c7 100644
--- a/tasks/changelog.rb
+++ b/tasks/changelog.rb
@@ -20,9 +20,10 @@ begin
config.between_tags = ["v#{latest_stable_version}", "v#{Chef::VERSION}"]
config.max_issues = 0
config.add_issues_wo_labels = false
+ config.issues = false
config.enhancement_labels = "enhancement,Enhancement,New Feature,Feature".split(",")
config.bug_labels = "bug,Bug,Improvement,Upstream Bug".split(",")
- config.exclude_labels = "duplicate,question,invalid,wontfix,no_changelog,Exclude From Changelog,Question,Discussion".split(",")
+ config.exclude_labels = "duplicate,question,invalid,wontfix,no_changelog,Exclude From Changelog,Question,Discussion,Meta: Exclude From Changelog".split(",")
config.header = "This changelog reflects the current state of chef's master branch on github and may not reflect the current released version of chef, which is [![Gem Version](https://badge.fury.io/rb/chef.svg)](https://badge.fury.io/rb/chef)."
end
end