Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 41 additions & 4 deletions config_defaults.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
# yamllint disable rule:line-length
.github/CODEOWNERS:
extra_owners: []
.github/workflows/ci.yml:
Expand All @@ -13,22 +14,22 @@
Jenkinsfile:
delete: true
Gemfile:
puppet_version: '~> 7.24'
puppet_version: ['>= 7.24', '< 9']
required:
':test':
- gem: voxpupuli-test
version: '~> 8.0'
version: '~> 9.0'
- gem: coveralls
- gem: simplecov-console
- gem: puppet_metadata
version: '~> 4.0'
version: '~> 5.0'
':development':
- gem: guard-rake
- gem: overcommit
version: '>= 0.39.1'
':system_tests':
- gem: voxpupuli-acceptance
version: '~> 3.0'
version: '~> 3.5'
':release':
- gem: voxpupuli-release
version: '~> 3.0'
Expand Down Expand Up @@ -119,8 +120,12 @@ spec/spec_helper_acceptance.rb:
unmanaged: true
configure_beaker:
modules: ':metadata'
spec/spec.opts:
delete: true
CONTRIBUTING.md:
delete: true
.yardopts:
delete: true
.gitlab-ci.yml:
delete: true
.pdkignore:
Expand All @@ -133,7 +138,39 @@ pdk.yaml:
delete: true
.tool-versions:
delete: true
CODE_OF_CONDUCT.md:
delete: true
.github/CODE_OF_CONDUCT.md:
delete: true
SECURITY.md:
delete: true
.github/SECURITY.md:
delete: true
.github/stale.yml:
delete: true
Modulefile:
delete: true
Makefile:
delete: true
Dockerfile:
delete: true
.pcci.yml:
delete: true
.rspec_parallel:
delete: true
.rspec:
delete: true
.devcontainer/Dockerfile:
delete: true
.devcontainer/devcontainer.json:
delete: true
.devcontainer/README.md:
delete: true
.vscode/extensions.json:
delete: true
.nodeset.yml:
delete: true
.kitchen.yml:
delete: true
...
# vim: syntax=yaml
29 changes: 29 additions & 0 deletions moduleroot/.github/release.yml.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
# Managed by modulesync - DO NOT EDIT
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/

# https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes

changelog:
exclude:
labels:
- duplicate
- invalid
- modulesync
- question
- skip-changelog
- wont-fix
- wontfix

categories:
- title: Breaking changes
labels:
- backwards-incompatible

- title: Implemented enhancements
labels:
- enhancement

- title: Fixed bugs
labels:
- bug
2 changes: 1 addition & 1 deletion moduleroot/.msync.yml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Managed by modulesync - DO NOT EDIT
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/

modulesync_config_version: '9.0.0'
modulesync_config_version: '9.5.0'
Loading