Skip to content

Bump vitest from 3.0.1 to 3.0.2 #628

Bump vitest from 3.0.1 to 3.0.2

Bump vitest from 3.0.1 to 3.0.2 #628

name: Auto-Merge Dependabot Updates
on:
pull_request:
branches:
- '2.x'
paths:
- '.github/workflows/**'
- package.json
- package-lock.json
permissions:
contents: write
pull-requests: write
jobs:
automerge:
name: Enable Auto-Merge for Dependabot
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.actor == 'dependabot[bot]'
runs-on: ubuntu-24.04
steps:
- name: Approve Dependabot PR
run: gh pr review --approve "${{ env.PR_URL }}"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Enable auto-merge
run: gh pr merge --auto --squash --delete-branch "${{ env.PR_URL }}"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}