Skip to content

fix: chores and reliability fixes (#123-#125, #128, #132, #137-#139) … #1

fix: chores and reliability fixes (#123-#125, #128, #132, #137-#139) …

fix: chores and reliability fixes (#123-#125, #128, #132, #137-#139) … #1

name: Release Please
on:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
permissions:
contents: write
pull-requests: write
jobs:
version:
name: Version Packages
runs-on: ubuntu-latest
# Skip if this push is the Version PR merge itself (prevents loop)
if: "!startsWith(github.event.head_commit.message, 'ci: version packages')"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
- name: Create or update Version PR
uses: changesets/action@v1
with:
version: bun run version
commit: "ci: version packages"
title: "ci: version packages"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}