chore(deps-dev): bump @types/node from 25.2.0 to 25.2.2 in the dependencies group #6
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | |
| } |