Skip to content

Commit 686a147

Browse files
Merge pull request #2156 from puppetlabs/pdksync_pdkupdate
pdksync - (maint) PDKSync - PDK Update
2 parents f6471d8 + c904bd1 commit 686a147

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

.github/workflows/auto_release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: "Auto release"
22

33
on:
4-
schedule:
5-
- cron: '0 3 * * 6'
64
workflow_dispatch:
75

86
env:

Rakefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ if Bundler.rubygems.find_name('github_changelog_generator').any?
5555
config.add_pr_wo_labels = true
5656
config.issues = false
5757
config.merge_prefix = "### UNCATEGORIZED PRS; LABEL THEM ON GITHUB"
58-
config.max_issues = 500
5958
config.configure_sections = {
6059
"Changed" => {
6160
"prefix" => "### Changed",

metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,5 +82,5 @@
8282
"description": "Module for Apache configuration",
8383
"pdk-version": "2.1.0",
8484
"template-url": "https://github.com/puppetlabs/pdk-templates.git#main",
85-
"template-ref": "heads/main-0-g135398a"
85+
"template-ref": "heads/main-0-g03daa92"
8686
}

spec/spec_helper.rb

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,18 @@
4848
c.after(:suite) do
4949
RSpec::Puppet::Coverage.report!(0)
5050
end
51+
52+
# Filter backtrace noise
53+
backtrace_exclusion_patterns = [
54+
%r{spec_helper},
55+
%r{gems},
56+
]
57+
58+
if c.respond_to?(:backtrace_exclusion_patterns)
59+
c.backtrace_exclusion_patterns = backtrace_exclusion_patterns
60+
elsif c.respond_to?(:backtrace_clean_patterns)
61+
c.backtrace_clean_patterns = backtrace_exclusion_patterns
62+
end
5163
end
5264

5365
# Ensures that a module is defined

0 commit comments

Comments
 (0)