-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix PR titles made by prepare/publish release workflows
- Loading branch information
1 parent
e0c335e
commit 6f22bb5
Showing
2 changed files
with
17 additions
and
5 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 |
---|---|---|
|
@@ -45,7 +45,7 @@ jobs: | |
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
commit-message: Automated Crowdin downstream | ||
title: "[i18n] Automated Crowdin downstream" | ||
title: "[${{ steps.semver_parser.outputs.major }}.${{ steps.semver_parser.outputs.minor }}][i18n] Automated Crowdin downstream" | ||
body: | | ||
This is an automated PR that is part of Prepare Release automated workflow (2 out of 2). | ||
Please ensure that there are no errors or invalid files are in the PR. | ||
|
@@ -101,13 +101,19 @@ jobs: | |
); | ||
return await script({github, context}); | ||
- name: Extract Semver | ||
id: semver_parser | ||
uses: booxmedialtd/[email protected] | ||
with: | ||
input_string: ${{ steps.bump_version_stable.outputs.new_version }} | ||
|
||
- name: Create Pull Request | ||
id: cpr_bump_stable | ||
uses: peter-evans/create-pull-request@v4 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
commit-message: Version bump to ${{ steps.bump_version_stable.outputs.new_version }} | ||
title: Version bump to ${{ steps.bump_version_stable.outputs.new_version }} | ||
commit-message: "[${{ steps.semver_parser.outputs.major }}.${{ steps.semver_parser.outputs.minor }}] Version bump to ${{ steps.bump_version_stable.outputs.new_version }}" | ||
title: "[${{ steps.semver_parser.outputs.major }}.${{ steps.semver_parser.outputs.minor }}] Version bump to ${{ steps.bump_version_stable.outputs.new_version }}" | ||
body: | | ||
This is an automated PR that is part of Prepare Release automated workflow (1 out of 2). | ||
Please ensure that there are no errors or invalid files are in the PR. | ||
|
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 |
---|---|---|
|
@@ -120,13 +120,19 @@ jobs: | |
); | ||
return await script({github, context}); | ||
- name: Extract Semver | ||
id: semver_parser | ||
uses: booxmedialtd/[email protected] | ||
with: | ||
input_string: ${{ steps.bump_version_stable.outputs.new_version }} | ||
|
||
- name: Create Pull Request | ||
id: cpr_bump_dev | ||
uses: peter-evans/create-pull-request@v4 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
commit-message: Version bump to ${{ steps.bump_version_dev.outputs.new_version }} | ||
title: Version bump to ${{ steps.bump_version_dev.outputs.new_version }} | ||
commit-message: "[${{ steps.semver_parser.outputs.major }}.${{ steps.semver_parser.outputs.minor }}]Version bump to ${{ steps.bump_version_dev.outputs.new_version }}" | ||
title: "[${{ steps.semver_parser.outputs.major }}.${{ steps.semver_parser.outputs.minor }}]Version bump to ${{ steps.bump_version_dev.outputs.new_version }}" | ||
body: | | ||
This is an automated PR. | ||
Please ensure that there are no errors or invalid files are in the PR. | ||
|