-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add action to create a module release PR
- Loading branch information
1 parent
113b42f
commit 672a436
Showing
1 changed file
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
--- | ||
|
||
name: Prepare Release | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
version: | ||
description: 'Module version to be released.' | ||
required: true | ||
type: string | ||
working-directory: | ||
description: The working directory where all jobs should be executed. Used for modules in subdirectories like a monorepo or a control repository. | ||
default: '.' | ||
required: false | ||
type: string | ||
|
||
env: | ||
BUNDLE_WITHOUT: development:test:system_tests | ||
|
||
jobs: | ||
prepare_release: | ||
defaults: | ||
run: | ||
working-directory: ${{ inputs.working-directory }} | ||
name: 'Puppet Forge' | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Setup Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: '3.3' | ||
bundler-cache: true | ||
working-directory: ${{ inputs.working-directory }} | ||
- name: Update metadata.json to new version | ||
run: bundle exec rake module:bump_to_version[${{ inputs.version }}] | ||
- name: Update CHANGELOG.md and update REFERENCE.md if required | ||
env: | ||
# https://docs.github.com/en/actions/security-for-github-actions/security-guides/automatic-token-authentication | ||
CHANGELOG_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: bundle exec rake release:prepare | ||
- name: 'Check if a release is necessary' | ||
id: 'check' | ||
run: | | ||
git diff --quiet CHANGELOG.md && echo "release=false" >> $GITHUB_OUTPUT || echo "release=true" >> $GITHUB_OUTPUT | ||
- name: 'Commit changes' | ||
if: ${{ steps.check.outputs.release == 'true' }} | ||
env: | ||
# https://docs.github.com/en/actions/security-for-github-actions/security-guides/automatic-token-authentication | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GIT_AUTHOR_NAME: Vox Pupuli Release Automation | ||
GIT_AUTHOR_EMAIL: "${{ github.repository_owner }}@users.noreply.github.com" | ||
run: | | ||
git commit --all --message="Release v${{ steps.get_version.outputs.version }}" | ||
gh pr create --title "Release v${{ steps.get_version.outputs.version }}" --label skip-changelog |