diff --git a/.github/workflows/bump-version-flutter-app.yml b/.github/workflows/bump-version-flutter-app.yml index 555a13c..78e09d6 100644 --- a/.github/workflows/bump-version-flutter-app.yml +++ b/.github/workflows/bump-version-flutter-app.yml @@ -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: | @@ -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: diff --git a/.github/workflows/bump-version-flutter-lib.yml b/.github/workflows/bump-version-flutter-lib.yml index 570c7c4..8dece35 100644 --- a/.github/workflows/bump-version-flutter-lib.yml +++ b/.github/workflows/bump-version-flutter-lib.yml @@ -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: | @@ -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: diff --git a/.github/workflows/bump-version-rust.yml b/.github/workflows/bump-version-rust.yml index 154488f..1c80745 100644 --- a/.github/workflows/bump-version-rust.yml +++ b/.github/workflows/bump-version-rust.yml @@ -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: