-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path.sync.yml
44 lines (39 loc) · 1.25 KB
/
.sync.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# This file can be used to customize the files managed by PDK.
#
# See https://github.com/puppetlabs/pdk-templates/blob/main/README.md
# for more information.
#
# See https://github.com/puppetlabs/pdk-templates/blob/main/config_defaults.yml
# for the default values.
---
appveyor.yml:
delete: true
.gitlab-ci.yml:
delete: true
Gemfile:
unmanaged: false
optional:
':development':
- gem: 'github_changelog_generator'
version: '~> 1.15'
condition: "Gem::Version.new(RUBY_VERSION.dup) >= Gem::Version.new('2.3.0')"
':test':
# provides metadata2gha, needed for unit tests
- gem: 'puppet_metadata'
version: '~> 1.9.0'
spec/spec_helper.rb:
coverage_report: true
# TODO: reach from ~80% coverage to 100% and enable testing it
# minimum_code_coverage_percentage: 100
Rakefile:
default_disabled_lint_checks:
- '80chars'
- '140chars'
# Disabled as the associate Ruby Gem has unmet dependency issues (2021-07-26)
#Rakefile:
# extras:
# - "require 'github_changelog_generator/task'"
# - 'GitHubChangelogGenerator::RakeTask.new :changelog do |config|'
# - ' version = (Blacksmith::Modulefile.new).version'
# - ' config.exclude_labels = %w{duplicate question invalid wontfix modulesync}'
# - 'end'