Update Charabia version in Cargo.toml #15
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
name: Update Charabia version in Cargo.toml | |
on: | |
workflow_dispatch: | |
inputs: | |
new_version: | |
description: 'The new version (vX.Y.Z)' | |
required: true | |
env: | |
NEW_VERSION: ${{ github.event.inputs.new_version }} | |
NEW_BRANCH: update-version-${{ github.event.inputs.new_version }} | |
GH_TOKEN: ${{ secrets.MEILI_BOT_GH_PAT }} | |
jobs: | |
update-version-cargo-toml: | |
name: Update version in Cargo.toml file | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Install sd | |
run: cargo install sd | |
- name: Update Cargo.toml | |
run: | | |
raw_new_version=$(echo $NEW_VERSION | cut -d 'v' -f 2) | |
new_string="version = \"$raw_new_version\"" | |
sd '^version = "\d+.\d+.\w+"$' "$new_string" charabia/Cargo.toml | |
- name: Commit and push the changes to the ${{ env.NEW_BRANCH }} branch | |
uses: EndBug/add-and-commit@v9 | |
with: | |
message: "Update version for the next release (${{ env.NEW_VERSION }}) in Cargo.toml files" | |
new_branch: ${{ env.NEW_BRANCH }} | |
- name: Create the PR pointing to ${{ github.ref_name }} | |
run: | | |
gh pr create \ | |
--title "Update version for the next release ($NEW_VERSION) in Cargo.toml files" \ | |
--body '⚠️ This PR is automatically generated. Check the new version is the expected one before merging.' \ | |
--label 'skip changelog' |