mirror of
https://github.com/voxpupuli/puppet-hashi_stack.git
synced 2025-05-23 18:35:01 +01:00
modulesync 9.1.0
This commit is contained in:
parent
0116f1caf5
commit
f383d32565
9 changed files with 88 additions and 4 deletions
12
.github/CONTRIBUTING.md
vendored
12
.github/CONTRIBUTING.md
vendored
|
@ -245,15 +245,23 @@ with:
|
|||
BEAKER_PUPPET_COLLECTION=puppet7 BEAKER_setfile=debian11-64 bundle exec rake beaker
|
||||
```
|
||||
|
||||
or
|
||||
|
||||
```sh
|
||||
BEAKER_PUPPET_COLLECTION=none BEAKER_setfile=archlinux-64 bundle exec rake beaker
|
||||
```
|
||||
|
||||
This latter example will use the distribution's own version of Puppet.
|
||||
|
||||
You can replace the string `debian11` with any common operating system.
|
||||
The following strings are known to work:
|
||||
|
||||
* ubuntu2004
|
||||
* ubuntu2204
|
||||
* debian11
|
||||
* centos7
|
||||
* centos8
|
||||
* debian12
|
||||
* centos9
|
||||
* archlinux
|
||||
* almalinux8
|
||||
* almalinux9
|
||||
* fedora36
|
||||
|
|
3
.github/labeler.yml
vendored
3
.github/labeler.yml
vendored
|
@ -1,3 +1,6 @@
|
|||
---
|
||||
# Managed by modulesync - DO NOT EDIT
|
||||
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
|
||||
|
||||
skip-changelog:
|
||||
- head-branch: ['^release-*', 'release']
|
||||
|
|
42
.github/release.yml
vendored
Normal file
42
.github/release.yml
vendored
Normal file
|
@ -0,0 +1,42 @@
|
|||
---
|
||||
# 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: New Features 🎉
|
||||
labels:
|
||||
- enhancement
|
||||
|
||||
- title: Bug Fixes 🐛
|
||||
labels:
|
||||
- bug
|
||||
|
||||
- title: Documentation Updates 📚
|
||||
labels:
|
||||
- documentation
|
||||
- docs
|
||||
|
||||
- title: Dependency Updates ⬆️
|
||||
labels:
|
||||
- dependencies
|
||||
|
||||
- title: Other Changes
|
||||
labels:
|
||||
- "*"
|
17
.github/workflows/labeler.yml
vendored
Normal file
17
.github/workflows/labeler.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
# Managed by modulesync - DO NOT EDIT
|
||||
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
|
||||
|
||||
name: "Pull Request Labeler"
|
||||
|
||||
on:
|
||||
pull_request_target: {}
|
||||
|
||||
jobs:
|
||||
labeler:
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: write
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/labeler@v5
|
7
.github/workflows/release.yml
vendored
7
.github/workflows/release.yml
vendored
|
@ -20,3 +20,10 @@ jobs:
|
|||
# https://docs.github.com/en/actions/security-guides/encrypted-secrets
|
||||
username: ${{ secrets.PUPPET_FORGE_USERNAME }}
|
||||
api_key: ${{ secrets.PUPPET_FORGE_API_KEY }}
|
||||
|
||||
create-github-release:
|
||||
name: Create GitHub Release
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Create GitHub release
|
||||
uses: voxpupuli/gha-create-a-github-release@v1
|
||||
|
|
|
@ -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.1.0'
|
||||
|
|
|
@ -1 +1,4 @@
|
|||
# Managed by modulesync - DO NOT EDIT
|
||||
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
|
||||
|
||||
--fail-on-warnings
|
||||
|
|
2
Gemfile
2
Gemfile
|
@ -4,7 +4,7 @@
|
|||
source ENV['GEM_SOURCE'] || 'https://rubygems.org'
|
||||
|
||||
group :test do
|
||||
gem 'voxpupuli-test', '~> 8.0', :require => false
|
||||
gem 'voxpupuli-test', '~> 9.0', :require => false
|
||||
gem 'coveralls', :require => false
|
||||
gem 'simplecov-console', :require => false
|
||||
gem 'puppet_metadata', '~> 4.0', :require => false
|
||||
|
|
|
@ -9,6 +9,10 @@ ENV['COVERAGE'] ||= 'yes' if Dir.exist?(File.expand_path('../lib', __dir__))
|
|||
|
||||
require 'voxpupuli/test/spec_helper'
|
||||
|
||||
RSpec.configure do |c|
|
||||
c.facterdb_string_keys = false
|
||||
end
|
||||
|
||||
add_mocked_facts!
|
||||
|
||||
if File.exist?(File.join(__dir__, 'default_module_facts.yml'))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue