Skip to content
This repository was archived by the owner on Mar 3, 2026. It is now read-only.

chore(deps-dev): bump @types/node from 25.2.3 to 25.3.0 #132

chore(deps-dev): bump @types/node from 25.2.3 to 25.3.0

chore(deps-dev): bump @types/node from 25.2.3 to 25.3.0 #132

Workflow file for this run

name: Dependabot Auto-Approve
on:
pull_request:
types: [opened, synchronize]
permissions:
pull-requests: write
contents: write
checks: read
statuses: read
jobs:
auto-approve:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Auto-approve Dependabot PRs
uses: hmarr/auto-approve-action@v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
auto-merge:
runs-on: ubuntu-latest
needs: auto-approve
if: github.actor == 'dependabot[bot]'
steps:
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}