Skip to content

Commit 8a48055

Browse files
committed
(CONT-494) Fix for .sync.yml
1 parent b13c96b commit 8a48055

File tree

9 files changed

+13
-149
lines changed

9 files changed

+13
-149
lines changed

.gitlab-ci.yml

Lines changed: 0 additions & 53 deletions
This file was deleted.

.puppet-lint.rc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
--relative
2+
--no-relative_classname_inclusion-check
3+
--no-parameter_types-check
4+
--no-top_scope_facts-check
5+
--no-legacy_facts-check

.sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Gemfile:
77
optional:
88
":development":
99
- gem: github_changelog_generator
10-
version: '= 1.15.2'
10+
version: '= 1.15.2'
1111
Rakefile:
1212
changelog_user: puppetlabs
1313
changelog_max_issues: 500

.travis.yml

Lines changed: 0 additions & 45 deletions
This file was deleted.

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ group :development do
3434
gem "rubocop-performance", '= 1.9.1', require: false
3535
gem "rubocop-rspec", '= 2.0.1', require: false
3636
gem "rb-readline", '= 0.5.5', require: false, platforms: [:mswin, :mingw, :x64_mingw]
37+
gem "github_changelog_generator", '= 1.15.2', require: false
3738
end
3839
group :system_tests do
3940
gem "puppet_litmus", '< 1.0.0', require: false, platforms: [:ruby]

Rakefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,18 @@ def changelog_future_release
4242
end
4343

4444
PuppetLint.configuration.send('disable_relative')
45+
PuppetLint.configuration.send('disable_relative_classname_inclusion')
46+
PuppetLint.configuration.send('disable_parameter_types')
47+
PuppetLint.configuration.send('disable_top_scope_facts')
48+
PuppetLint.configuration.send('disable_legacy_facts')
4549

4650

4751
if Bundler.rubygems.find_name('github_changelog_generator').any?
4852
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
4953
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?
5054
config.user = "#{changelog_user}"
5155
config.project = "#{changelog_project}"
56+
config.since_tag = "v3.0.0"
5257
config.future_release = "#{changelog_future_release}"
5358
config.exclude_labels = ['maintenance']
5459
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)."

appveyor.yml

Lines changed: 0 additions & 49 deletions
This file was deleted.

metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,5 +84,5 @@
8484
],
8585
"template-url": "https://github.com/puppetlabs/pdk-templates.git#main",
8686
"template-ref": "2.7.1-0-g9a16c87",
87-
"pdk-version": "2.5.0"
87+
"pdk-version": "2.6.0"
8888
}

spec/spec_helper.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
end
4747
c.filter_run_excluding(bolt: true) unless ENV['GEM_BOLT']
4848
c.after(:suite) do
49+
RSpec::Puppet::Coverage.report!(0)
4950
end
5051

5152
# Filter backtrace noise

0 commit comments

Comments
 (0)