From fb5333e116d89fd073d2c40e84486caa7a5a83db Mon Sep 17 00:00:00 2001 From: Yingwen Date: Thu, 9 Apr 2026 20:37:24 +0800 Subject: [PATCH] ci: add standalone workflows for bumping helm charts and homebrew (#7941) ci: add standalone workflows for bumping helm charts and homebrew versions Signed-off-by: evenyag --- .../workflows/bump-helm-charts-version.yml | 29 +++++++++++++++++++ .../bump-homebrew-greptime-version.yml | 29 +++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 .github/workflows/bump-helm-charts-version.yml create mode 100644 .github/workflows/bump-homebrew-greptime-version.yml diff --git a/.github/workflows/bump-helm-charts-version.yml b/.github/workflows/bump-helm-charts-version.yml new file mode 100644 index 0000000000..5921ec8a8c --- /dev/null +++ b/.github/workflows/bump-helm-charts-version.yml @@ -0,0 +1,29 @@ +name: Bump helm charts version + +on: + workflow_dispatch: + inputs: + version: + description: The version to bump (e.g. v1.0.0) + required: true + type: string + +jobs: + bump-helm-charts-version: + name: Bump helm charts version + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Bump helm charts version + env: + GITHUB_TOKEN: ${{ secrets.HELM_CHARTS_REPO_TOKEN }} + VERSION: ${{ inputs.version }} + run: | + ./.github/scripts/update-helm-charts-version.sh diff --git a/.github/workflows/bump-homebrew-greptime-version.yml b/.github/workflows/bump-homebrew-greptime-version.yml new file mode 100644 index 0000000000..af8ca8fc99 --- /dev/null +++ b/.github/workflows/bump-homebrew-greptime-version.yml @@ -0,0 +1,29 @@ +name: Bump homebrew greptime version + +on: + workflow_dispatch: + inputs: + version: + description: The version to bump (e.g. v1.0.0) + required: true + type: string + +jobs: + bump-homebrew-greptime-version: + name: Bump homebrew greptime version + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Bump homebrew greptime version + env: + GITHUB_TOKEN: ${{ secrets.HOMEBREW_GREPTIME_REPO_TOKEN }} + VERSION: ${{ inputs.version }} + run: | + ./.github/scripts/update-homebrew-greptme-version.sh