Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork852
Closed
Labels
Description
As suggested inthe documentation I have a rake task to which I'm passing config parameters; however, issue_line_labels and breaking_labels trigger the following failures:
NoMethodError: undefined method `issue_line_labels=' for #<GitHubChangelogGenerator::RakeTask:0x00007f90c210f3d8>NoMethodError: undefined method `breaking_labels=' for #<GitHubChangelogGenerator::RakeTask:0x00007fdee117b250>This is how I'm setting the config params:
config.include_labels = [] config.exclude_labels = [] config.bug_labels = [] config.enhancement_labels = [] config.breaking_labels = [] config.issue_line_labels = [] config.exclude_tags = []All others config params are processes without error.
Any advice?