Skip to content

chore(deps-dev): bump @types/node from 25.2.0 to 25.2.2 in the dependencies group #6

chore(deps-dev): bump @types/node from 25.2.0 to 25.2.2 in the dependencies group

chore(deps-dev): bump @types/node from 25.2.0 to 25.2.2 in the dependencies group #6

Workflow file for this run

name: Sync Lockfile
on:
pull_request:
paths: [package.json]
permissions:
contents: write
jobs:
sync:
if: github.actor == 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
ref: ${{ github.head_ref }}
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: |
git diff --quiet bun.lock || {
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add bun.lock
git commit -m "chore: sync bun.lock"
git push
}