|
1 | 1 | require 'puppetlabs_spec_helper/rake_tasks'
|
2 | 2 | require 'puppet-syntax/tasks/puppet-syntax'
|
3 | 3 | require 'puppet_blacksmith/rake_tasks' if Bundler.rubygems.find_name('puppet-blacksmith').any?
|
| 4 | +require 'github_changelog_generator/task' if Bundler.rubygems.find_name('github_changelog_generator').any? |
4 | 5 | require 'puppet_pot_generator/rake_tasks'
|
5 | 6 |
|
| 7 | +def changelog_user |
| 8 | + return unless Rake.application.top_level_tasks.include? "changelog" |
| 9 | + returnVal = nil || JSON.load(File.read('metadata.json'))['author'] |
| 10 | + raise "unable to find the changelog_user in .sync.yml, or the author in metadata.json" if returnVal.nil? |
| 11 | + puts "GitHubChangelogGenerator user:#{returnVal}" |
| 12 | + returnVal |
| 13 | +end |
| 14 | + |
| 15 | +def changelog_project |
| 16 | + return unless Rake.application.top_level_tasks.include? "changelog" |
| 17 | + returnVal = nil || JSON.load(File.read('metadata.json'))['name'] |
| 18 | + raise "unable to find the changelog_project in .sync.yml or the name in metadata.json" if returnVal.nil? |
| 19 | + puts "GitHubChangelogGenerator project:#{returnVal}" |
| 20 | + returnVal |
| 21 | +end |
| 22 | + |
| 23 | +def changelog_future_release |
| 24 | + return unless Rake.application.top_level_tasks.include? "changelog" |
| 25 | + returnVal = JSON.load(File.read('metadata.json'))['version'] |
| 26 | + raise "unable to find the future_release (version) in metadata.json" if returnVal.nil? |
| 27 | + puts "GitHubChangelogGenerator future_release:#{returnVal}" |
| 28 | + returnVal |
| 29 | +end |
| 30 | + |
6 | 31 | PuppetLint.configuration.send('disable_relative')
|
7 | 32 |
|
| 33 | +if Bundler.rubygems.find_name('github_changelog_generator').any? |
| 34 | + GitHubChangelogGenerator::RakeTask.new :changelog do |config| |
| 35 | + raise "Set CHANGELOG_GITHUB_TOKEN environment variable eg 'export CHANGELOG_GITHUB_TOKEN=valid_token_here'" if Rake.application.top_level_tasks.include? "changelog" and ENV['CHANGELOG_GITHUB_TOKEN'].nil? |
| 36 | + config.user = "#{changelog_user}" |
| 37 | + config.project = "#{changelog_project}" |
| 38 | + config.future_release = "#{changelog_future_release}" |
| 39 | + config.exclude_labels = ['maintenance'] |
| 40 | + config.header = "# Change log\n\nAll notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org)." |
| 41 | + config.add_pr_wo_labels = true |
| 42 | + config.issues = false |
| 43 | + config.merge_prefix = "### UNCATEGORIZED PRS; GO LABEL THEM" |
| 44 | + config.configure_sections = { |
| 45 | + "Changed" => { |
| 46 | + "prefix" => "### Changed", |
| 47 | + "labels" => ["backwards-incompatible"], |
| 48 | + }, |
| 49 | + "Added" => { |
| 50 | + "prefix" => "### Added", |
| 51 | + "labels" => ["feature", "enhancement"], |
| 52 | + }, |
| 53 | + "Fixed" => { |
| 54 | + "prefix" => "### Fixed", |
| 55 | + "labels" => ["bugfix"], |
| 56 | + }, |
| 57 | + } |
| 58 | + end |
| 59 | +else |
| 60 | + desc 'Generate a Changelog from GitHub' |
| 61 | + task :changelog do |
| 62 | + raise <<EOM |
| 63 | +The changelog tasks depends on unreleased features of the github_changelog_generator gem. |
| 64 | +Please manually add it to your .sync.yml for now, and run `pdk update`: |
| 65 | +--- |
| 66 | +Gemfile: |
| 67 | + optional: |
| 68 | + ':development': |
| 69 | + - gem: 'github_changelog_generator' |
| 70 | + git: 'https://github.com/skywinder/github-changelog-generator' |
| 71 | + ref: '20ee04ba1234e9e83eb2ffb5056e23d641c7a018' |
| 72 | + condition: "Gem::Version.new(RUBY_VERSION.dup) >= Gem::Version.new('2.2.2')" |
| 73 | +EOM |
| 74 | + end |
| 75 | +end |
| 76 | + |
0 commit comments