Skip to content

fix(ai-assist): surface the fallback reason for diagnosis #108

fix(ai-assist): surface the fallback reason for diagnosis

fix(ai-assist): surface the fallback reason for diagnosis #108

Workflow file for this run

name: Bump version
# Auto-increments the patch version in package.json on each push to main and
# commits it back. The bot's own commit carries [skip ci], so it does not loop.
on:
push:
branches: [main]
permissions:
contents: write
concurrency:
group: bump-${{ github.ref }}
cancel-in-progress: false
jobs:
bump:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Bump patch version
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
npm version patch --no-git-tag-version
VERSION=$(node -p "require('./package.json').version")
git commit -am "chore: bump version to ${VERSION} [skip ci]"
git push