File tree 4 files changed +13
-4
lines changed
4 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 1
1
name : " Auto release"
2
2
3
3
on :
4
- schedule :
5
- - cron : ' 0 3 * * 6'
6
4
workflow_dispatch :
7
5
8
6
env :
Original file line number Diff line number Diff line change @@ -55,7 +55,6 @@ if Bundler.rubygems.find_name('github_changelog_generator').any?
55
55
config . add_pr_wo_labels = true
56
56
config . issues = false
57
57
config . merge_prefix = "### UNCATEGORIZED PRS; LABEL THEM ON GITHUB"
58
- config . max_issues = 500
59
58
config . configure_sections = {
60
59
"Changed" => {
61
60
"prefix" => "### Changed" ,
Original file line number Diff line number Diff line change 82
82
"description" : " Module for Apache configuration" ,
83
83
"pdk-version" : " 2.1.0" ,
84
84
"template-url" : " https://github.com/puppetlabs/pdk-templates.git#main" ,
85
- "template-ref" : " heads/main-0-g135398a "
85
+ "template-ref" : " heads/main-0-g03daa92 "
86
86
}
Original file line number Diff line number Diff line change 48
48
c . after ( :suite ) do
49
49
RSpec ::Puppet ::Coverage . report! ( 0 )
50
50
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
51
63
end
52
64
53
65
# Ensures that a module is defined
You can’t perform that action at this time.
0 commit comments