10 changes: 0 additions & 10 deletions .github/workflows/auto_release.yml

This file was deleted.

15 changes: 15 additions & 0 deletions .github/workflows/release_prep.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: "Release Prep"

on:
workflow_dispatch:
inputs:
version:
description: "Module version to be released. Must be a valid semver string. (1.2.3)"
required: true

jobs:
release_prep:
uses: "puppetlabs/cat-github-actions/.github/workflows/module_release_prep.yml@main"
with:
version: "${{ github.event.inputs.version }}"
secrets: "inherit"
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ AllCops:
DisplayCopNames: true
ExtraDetails: true
DisplayStyleGuide: true
TargetRubyVersion: '2.7'
TargetRubyVersion: '2.6'
Include:
- "**/*.rb"
Exclude:
Expand Down
24 changes: 23 additions & 1 deletion .rubocop_todo.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2023-04-25 08:02:48 UTC using RuboCop version 1.48.1.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.

# Offense count: 231
# Configuration parameters: Prefixes, AllowedPatterns.
# Prefixes: when, with, without
Expand All @@ -12,11 +20,25 @@ RSpec/DescribeClass:
# Offense count: 16
# Configuration parameters: CountAsOne.
RSpec/ExampleLength:
Max: 86
Max: 85

# Offense count: 128
# Configuration parameters: EnforcedStyle, IgnoreSharedExamples.
# SupportedStyles: always, named_only
RSpec/NamedSubject:
Enabled: false

# Offense count: 30
# Configuration parameters: AllowedPatterns.
# AllowedPatterns: ^expect_, ^assert_
RSpec/NoExpectationExample:
Exclude:
- 'spec/acceptance/acceptance_1_readme_spec.rb'
- 'spec/acceptance/acceptance_1b_spec.rb'
- 'spec/acceptance/acceptance_2b_spec.rb'
- 'spec/acceptance/acceptance_3b_spec.rb'
- 'spec/acceptance/acceptance_4b_spec.rb'

# Offense count: 4
RSpec/RepeatedExampleGroupBody:
Exclude:
Expand Down
Loading