From 06f4573e49af9d6df0ecfa218b6e8684ccf36da1 Mon Sep 17 00:00:00 2001 From: HAOYUatHZ <37070449+HAOYUatHZ@users.noreply.github.com> Date: Sun, 31 Mar 2024 14:56:56 +0800 Subject: [PATCH] ci: add bump_version bot (#538) --- .github/scripts/bump_version_dot_go.mjs | 35 ++++++++++++++ .github/workflows/bump_version.yml | 63 +++++++++++++++++++++++++ 2 files changed, 98 insertions(+) create mode 100644 .github/scripts/bump_version_dot_go.mjs create mode 100644 .github/workflows/bump_version.yml diff --git a/.github/scripts/bump_version_dot_go.mjs b/.github/scripts/bump_version_dot_go.mjs new file mode 100644 index 000000000000..996ee2a220ed --- /dev/null +++ b/.github/scripts/bump_version_dot_go.mjs @@ -0,0 +1,35 @@ +import { URL } from "url"; +import { readFileSync, writeFileSync } from "fs"; + +const versionFilePath = new URL( + "../../params/version.go", + import.meta.url +).pathname; + +const versionFileContent = readFileSync(versionFilePath, { encoding: "utf-8" }); + +const currentVersionPatch = versionFileContent.match( + /VersionPatch = (?\d+)/ +).groups.patch; + +try { + parseInt(currentVersionPatch); +} catch (err) { + console.error(new Error("Failed to parse version in version.go file")); + throw err; +} + +// prettier-ignore +const newVersionPatch = `${parseInt(currentVersionPatch) + 1}`; + +console.log( + `Bump version from ${currentVersionPatch} to ${newVersionPatch}` +); + +writeFileSync( + versionFilePath, + versionFileContent.replace( + `VersionPatch = ${currentVersionPatch}`, + `VersionPatch = ${newVersionPatch}` + ) +); diff --git a/.github/workflows/bump_version.yml b/.github/workflows/bump_version.yml new file mode 100644 index 000000000000..fc2a520b0e88 --- /dev/null +++ b/.github/workflows/bump_version.yml @@ -0,0 +1,63 @@ +name: Bump version + +on: + pull_request: + branches: [ develop ] + types: + - opened + - reopened + - synchronize + - ready_for_review + - labeled + +jobs: + try-to-bump: + if: contains(github.event.pull_request.labels.*.name, 'bump-version') + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + with: + ref: ${{ github.head_ref }} + - name: check diff + id: check_diff + run: | + set -euo pipefail + + # fetch develop branch so that we can diff against later + git fetch origin develop + + echo 'checking verion changes in diff...' + + # check if version changed in version.go + # note: the grep will fail if use \d instead of [0-9] + git diff HEAD..origin/develop --text --no-ext-diff --unified=0 --no-prefix params/version.go | grep -E '^\+VersionPatch = "v[0-9]+"$' && true + + exit_code=$? + + # auto bump if version is not bumped manually + echo '> require auto version bump?' + + if [ $exit_code -eq 0 ]; then + echo '> no, already bumped' + echo "result=no-bump" >> "$GITHUB_OUTPUT" + else + echo '> yes' + echo "result=bump" >> "$GITHUB_OUTPUT" + fi + - name: Install Node.js 16 + if: steps.check_diff.outputs.result == 'bump' + uses: actions/setup-node@v3 + with: + node-version: 16 + - name: bump version in params/version.go + if: steps.check_diff.outputs.result == 'bump' + run: node .github/scripts/bump_version_dot_go.mjs + + # Commits made by this Action do not trigger new Workflow runs + - uses: stefanzweifel/git-auto-commit-action@3ea6ae190baf489ba007f7c92608f33ce20ef04a + if: steps.check_diff.outputs.result == 'bump' + with: + skip_fetch: true # already did fetch in check diff + file_pattern: "params/version.go" + commit_message: "chore: auto version bump [bot]"