Skip to content

Commit 3987bb2

Browse files
Merge pull request #480 from puppetlabs/pdksync_remove_puppet5
pdksync - Remove Puppet 5 from testing and bump minimal version to 6.0.0
2 parents d2deaad + 8424c7d commit 3987bb2

File tree

5 files changed

+91
-7
lines changed

5 files changed

+91
-7
lines changed

.github/workflows/auto_release.yml

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
name: "Auto release"
2+
3+
on:
4+
schedule:
5+
- cron: '0 3 * * 6'
6+
workflow_dispatch:
7+
8+
env:
9+
HONEYCOMB_WRITEKEY: 7f3c63a70eecc61d635917de46bea4e6
10+
HONEYCOMB_DATASET: litmus tests
11+
CHANGELOG_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
12+
13+
jobs:
14+
auto_release:
15+
name: "Automatic release prep"
16+
runs-on: ubuntu-20.04
17+
18+
steps:
19+
- name: "Honeycomb: Start recording"
20+
uses: puppetlabs/kvrhdn-gha-buildevents@pdk-templates-v1
21+
with:
22+
apikey: ${{ env.HONEYCOMB_WRITEKEY }}
23+
dataset: ${{ env.HONEYCOMB_DATASET }}
24+
job-status: ${{ job.status }}
25+
26+
- name: "Honeycomb: start first step"
27+
run: |
28+
echo STEP_ID="auto-release" >> $GITHUB_ENV
29+
echo STEP_START=$(date +%s) >> $GITHUB_ENV
30+
31+
- name: "Checkout Source"
32+
if: ${{ github.repository_owner == 'puppetlabs' }}
33+
uses: actions/checkout@v2
34+
with:
35+
fetch-depth: 0
36+
persist-credentials: false
37+
38+
- name: "PDK Release prep"
39+
uses: docker://puppet/pdk:nightly
40+
with:
41+
args: 'release prep --force'
42+
env:
43+
CHANGELOG_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
44+
45+
- name: "Get Version"
46+
if: ${{ github.repository_owner == 'puppetlabs' }}
47+
id: gv
48+
run: |
49+
echo "::set-output name=ver::$(cat metadata.json | jq .version | tr -d \")"
50+
51+
- name: "Commit changes"
52+
if: ${{ github.repository_owner == 'puppetlabs' }}
53+
run: |
54+
git config --local user.email "[email protected]"
55+
git config --local user.name "GitHub Action"
56+
git add .
57+
git commit -m "Release prep v${{ steps.gv.outputs.ver }}"
58+
59+
- name: Create Pull Request
60+
id: cpr
61+
uses: puppetlabs/peter-evans-create-pull-request@v3
62+
if: ${{ github.repository_owner == 'puppetlabs' }}
63+
with:
64+
token: ${{ secrets.GITHUB_TOKEN }}
65+
commit-message: "Release prep v${{ steps.gv.outputs.ver }}"
66+
branch: "release-prep"
67+
delete-branch: true
68+
title: "Release prep v${{ steps.gv.outputs.ver }}"
69+
body: "Automated release-prep through [pdk-templates](https://github.com/puppetlabs/pdk-templates/blob/main/moduleroot/.github/workflows/auto_release.yml.erb)"
70+
labels: "maintenance"
71+
72+
- name: PR outputs
73+
if: ${{ github.repository_owner == 'puppetlabs' }}
74+
run: |
75+
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}"
76+
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}"
77+
78+
- name: "Honeycomb: Record finish step"
79+
if: ${{ always() }}
80+
run: |
81+
buildevents step $TRACE_ID $STEP_ID $STEP_START 'Finished auto release workflow'

.rubocop.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ RSpec/BeforeAfterAll:
3939
RSpec/HookArgument:
4040
Description: Prefer explicit :each argument, matching existing module's style
4141
EnforcedStyle: each
42+
RSpec/DescribeSymbol:
43+
Exclude:
44+
- spec/unit/facter/**/*.rb
4245
Style/BlockDelimiters:
4346
Description: Prefer braces for chaining. Mostly an aesthetical choice. Better to
4447
be consistent then.
@@ -414,6 +417,8 @@ Style/ExponentialNotation:
414417
Enabled: false
415418
Style/FloatDivision:
416419
Enabled: false
420+
Style/FrozenStringLiteralComment:
421+
Enabled: false
417422
Style/GlobalStdStream:
418423
Enabled: false
419424
Style/HashAsLastArrayItem:

.sync.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,5 @@ spec/spec_helper.rb:
5454
unmanaged: false
5555
.github/workflows/pr_test.yml:
5656
unmanaged: false
57+
.github/workflows/auto_release.yml:
58+
unmanaged: false

.travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@ jobs:
3030
-
3131
env: CHECK="check:symlinks check:git_ignore check:dot_underscore check:test_file rubocop syntax lint metadata_lint"
3232
stage: static
33-
-
34-
env: PUPPET_GEM_VERSION="~> 5.0" CHECK=parallel_spec
35-
rvm: 2.4.5
36-
stage: spec
3733
-
3834
env: PUPPET_GEM_VERSION="~> 6.0" CHECK=parallel_spec
3935
rvm: 2.5.7

metadata.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@
5454
"requirements": [
5555
{
5656
"name": "puppet",
57-
"version_requirement": ">= 5.5.10 < 8.0.0"
57+
"version_requirement": ">= 6.0.0 < 8.0.0"
5858
}
5959
],
60-
"pdk-version": "1.19.0.pre (47)",
60+
"pdk-version": "1.18.1",
6161
"template-url": "https://github.com/puppetlabs/pdk-templates.git#main",
62-
"template-ref": "heads/main-0-g1862b96"
62+
"template-ref": "heads/main-0-g44cc7ed"
6363
}

0 commit comments

Comments
 (0)