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
5 changes: 4 additions & 1 deletion .github/workflows/bump-version-flutter-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ jobs:
- name: Bump CHANGELOG version to match
run: get-project-version | bump-changelog-version

- name: Fix up CHANGELOG formatting
run: npx --yes prettier@latest --color --prose-wrap always --write -- **/CHANGELOG.md

- id: version
name: Get the new release version
run: |
Expand All @@ -95,7 +98,7 @@ jobs:
branch: release/bump-version
branch-suffix: timestamp
commit-message: Release v${{ steps.version.outputs.release_version }}
title: Prepare v${{ steps.version.outputs.release_version }} release.
title: Prepare the v${{ steps.version.outputs.release_version }} release
body: |-
This PR was automatically created by the [bump-version](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}) workflow, which ran the following commands:

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/bump-version-flutter-lib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ jobs:
- name: Bump CHANGELOG version to match
run: get-project-version | bump-changelog-version

- name: Fix up CHANGELOG formatting
run: npx --yes prettier@latest --color --prose-wrap always --write -- **/CHANGELOG.md

- id: version
name: Get the new release version
run: |
Expand All @@ -94,7 +97,7 @@ jobs:
branch: release/bump-version
branch-suffix: timestamp
commit-message: Release v${{ steps.version.outputs.release_version }}
title: Prepare v${{ steps.version.outputs.release_version }} ${{ inputs.level }} release.
title: Prepare the v${{ steps.version.outputs.release_version }} ${{ inputs.level }} release
body: |-
This PR was automatically created by the [bump-version](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}) workflow, which ran the following commands:

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bump-version-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ jobs:
with:
token: ${{ steps.generate_token.outputs.token }}
branch-suffix: timestamp
commit-message: Prepare ${{ inputs.package }} v${{ env.release_version }} ${{ inputs.level }} release
title: Prepare ${{ inputs.package }} v${{ env.release_version }} ${{ inputs.level }} release
commit-message: Release ${{ inputs.package }} v${{ env.release_version }}
title: Prepare the ${{ inputs.package }} v${{ env.release_version }} ${{ inputs.level }} release
body: |-
This PR was automatically created by the [bump-version](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}) workflow, which ran the following commands:

Expand Down