From 69ce5901264c0f777d3978ab8b4c8f550c0013ab Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Thu, 6 Feb 2025 13:48:25 +0000 Subject: [PATCH] feat: add automatic version bumping on releases Co-Authored-By: Han Xiao --- .github/workflows/release.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..6c7775c --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,35 @@ +name: Release +on: + release: + types: [published] + +jobs: + version-bump: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - uses: actions/setup-node@v4 + with: + node-version: '20.x' + registry-url: 'https://registry.npmjs.org' + + - name: Configure Git + run: | + git config user.name github-actions + git config user.email github-actions@github.com + + - name: Update Version + run: | + VERSION=${GITHUB_REF#refs/tags/v} + npm version $VERSION --no-git-tag-version + + - name: Create Pull Request + uses: peter-evans/create-pull-request@v5 + with: + commit-message: "chore: bump version to ${{ github.ref_name }}" + title: "chore: bump version to ${{ github.ref_name }}" + body: "Automated version bump triggered by release ${{ github.ref_name }}" + branch: "version-bump/${{ github.ref_name }}" + base: "main"