Skip to content

Commit 4aed9b7

Browse files
committed
(maint) - Update since_tag
1 parent fcb2ba5 commit 4aed9b7

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

.github/workflows/pr_test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ jobs:
5151
echo STEP_ID=Setup-Acceptance-Test-Matrix >> $GITHUB_ENV
5252
echo STEP_START=$(date +%s) >> $GITHUB_ENV
5353
54+
- name: Run validation steps
55+
run: |
56+
bundle exec rake validate
57+
if: ${{ github.repository_owner == 'puppetlabs' }}
58+
5459
- name: Setup Acceptance Test Matrix
5560
id: get-matrix
5661
run: |

.github/workflows/spec.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,11 @@ jobs:
5555
echo STEP_ID=Setup-Acceptance-Test-Matrix >> $GITHUB_ENV
5656
echo STEP_START=$(date +%s) >> $GITHUB_ENV
5757
58+
- name: Run Static & Syntax Tests
59+
if: ${{ github.repository_owner == 'puppetlabs' }}
60+
run: |
61+
buildevents cmd $TRACE_ID $STEP_ID 'static_syntax_checks' -- bundle exec rake syntax lint metadata_lint check:symlinks check:git_ignore check:dot_underscore check:test_file rubocop
62+
5863
- name: Setup Spec Test Matrix
5964
id: get-matrix
6065
run: |
@@ -120,10 +125,6 @@ jobs:
120125
buildevents cmd $TRACE_ID $STEP_ID 'bundle env' -- bundle env
121126
echo ::endgroup::
122127
123-
- name: Run Static & Syntax Tests
124-
run: |
125-
buildevents cmd $TRACE_ID $STEP_ID 'static_syntax_checks Puppet ${{ matrix.puppet_version }}, Ruby ${{ matrix.ruby_version }}' -- bundle exec rake syntax lint metadata_lint check:symlinks check:git_ignore check:dot_underscore check:test_file rubocop
126-
127128
- name: Run parallel_spec tests
128129
run: |
129130
buildevents cmd $TRACE_ID $STEP_ID 'rake parallel_spec Puppet ${{ matrix.puppet_version }}, Ruby ${{ matrix.ruby_version }}' -- bundle exec rake parallel_spec

.sync.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,4 @@ spec/spec_helper.rb:
2828
unmanaged: false
2929
.travis.yml:
3030
delete: true
31+
changelog_since_tag: 'v8.0.0'

Rakefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ if Bundler.rubygems.find_name('github_changelog_generator').any?
4848
raise "Set CHANGELOG_GITHUB_TOKEN environment variable eg 'export CHANGELOG_GITHUB_TOKEN=valid_token_here'" if Rake.application.top_level_tasks.include? "changelog" and ENV['CHANGELOG_GITHUB_TOKEN'].nil?
4949
config.user = "#{changelog_user}"
5050
config.project = "#{changelog_project}"
51+
config.since_tag = "v8.0.0"
5152
config.future_release = "#{changelog_future_release}"
5253
config.exclude_labels = ['maintenance']
5354
config.header = "# Change log\n\nAll notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org)."

metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@
3939
}
4040
],
4141
"template-url": "https://github.com/puppetlabs/pdk-templates.git#main",
42-
"template-ref": "heads/main-0-g03daa92",
42+
"template-ref": "heads/main-0-g2381db6",
4343
"pdk-version": "2.1.0"
4444
}

0 commit comments

Comments
 (0)