Skip to content

Commit 0236f58

Browse files
authored
Merge pull request #68 from opus-codium/modulesync
2 parents a06bf28 + d6a89e9 commit 0236f58

File tree

8 files changed

+33
-4
lines changed

8 files changed

+33
-4
lines changed

.github/labeler.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
---
2+
# Managed by modulesync - DO NOT EDIT
3+
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
4+
5+
modulesync:
6+
- head-branch: ['modulesync']
27
skip-changelog:
38
- head-branch: ['^release-*', 'release']

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
name: CI
66

7+
# yamllint disable-line rule:truthy
78
on:
89
pull_request: {}
910
push:
@@ -17,4 +18,4 @@ concurrency:
1718
jobs:
1819
puppet:
1920
name: Puppet
20-
uses: voxpupuli/gha-puppet/.github/workflows/beaker.yml@v2
21+
uses: voxpupuli/gha-puppet/.github/workflows/beaker.yml@v3

.github/workflows/labeler.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
# Managed by modulesync - DO NOT EDIT
3+
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
4+
5+
name: "Pull Request Labeler"
6+
7+
# yamllint disable-line rule:truthy
8+
on:
9+
pull_request_target: {}
10+
11+
jobs:
12+
labeler:
13+
permissions:
14+
contents: read
15+
pull-requests: write
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/labeler@v5

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
name: Release
66

7+
# yamllint disable-line rule:truthy
78
on:
89
push:
910
tags:
@@ -12,7 +13,7 @@ on:
1213
jobs:
1314
release:
1415
name: Release
15-
uses: voxpupuli/gha-puppet/.github/workflows/release.yml@v2
16+
uses: voxpupuli/gha-puppet/.github/workflows/release.yml@v3
1617
with:
1718
allowed_owner: 'opus-codium'
1819
secrets:

.pmtignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
/.github/
2121
/.librarian/
2222
/Puppetfile.lock
23+
/Puppetfile
2324
*.iml
2425
/.editorconfig
2526
/.fixtures.yml

.puppet-lint.rc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Managed by modulesync - DO NOT EDIT
2+
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
3+
14
--fail-on-warnings
25
--no-parameter_documentation-check
36
--no-parameter_types-check

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ end
2626
gem 'rake', :require => false
2727
gem 'facter', ENV['FACTER_GEM_VERSION'], :require => false, :groups => [:test]
2828

29-
puppetversion = ENV['PUPPET_GEM_VERSION'] || '~> 7.24'
29+
puppetversion = ENV['PUPPET_GEM_VERSION'] || "~> 7.24"
3030
gem 'puppet', puppetversion, :require => false, :groups => [:test]
3131

3232
# vim: syntax=ruby

manifests/cron.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
case $facts['os']['family'] {
1414
'Debian', 'RedHat': {
1515
cron { 'weekly_letsencrypt':
16-
ensure => absent,
16+
ensure => absent,
1717
}
1818
cron { 'weekly_dehydrated':
1919
ensure => $ensure,

0 commit comments

Comments
 (0)