Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/actions/create-release-pr-for-gem/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ inputs:
tag-prefix:
description: The tag prefix
default: "v"
pre-release:
description: Whether the release is a pre-release
default: false

runs:
using: "composite"
Expand All @@ -28,7 +31,7 @@ runs:
token: ${{ env.GITHUB_TOKEN }}
- name: Conventional Changelog Action
id: changelog
uses: TriPSs/conventional-changelog-action@v5
uses: TriPSs/conventional-changelog-action@v6
with:
preset: conventionalcommits
skip-version-file: true
Expand All @@ -39,6 +42,7 @@ runs:
skip-tag: true
tag-prefix: ${{ inputs.tag-prefix }}
github-token: ${{ env.GITHUB_TOKEN }}
pre-release: ${{ inputs.pre-release }}
- name: Commit version up commit
if: ${{ steps.changelog.outputs.skipped == 'false' }}
env:
Expand Down
6 changes: 5 additions & 1 deletion .github/actions/create-release-pr-for-npm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ inputs:
tag-prefix:
description: The tag prefix
default: "v"
pre-release:
description: Whether the release is a pre-release
default: false

runs:
using: "composite"
Expand All @@ -28,7 +31,7 @@ runs:
token: ${{ env.GITHUB_TOKEN }}
- name: Conventional Changelog Action
id: changelog
uses: TriPSs/conventional-changelog-action@v5
uses: TriPSs/conventional-changelog-action@v6
with:
preset: conventionalcommits
skip-version-file: true
Expand All @@ -39,6 +42,7 @@ runs:
skip-tag: true
tag-prefix: ${{ inputs.tag-prefix }}
github-token: ${{ env.GITHUB_TOKEN }}
pre-release: ${{ inputs.pre-release }}
- name: Commit version up commit
if: ${{ steps.changelog.outputs.skipped == 'false' }}
env:
Expand Down