Skip to content
This repository was archived by the owner on Jul 16, 2025. It is now read-only.

Bump next from 15.3.5 to 15.4.1 #931

Bump next from 15.3.5 to 15.4.1

Bump next from 15.3.5 to 15.4.1 #931

Workflow file for this run

name: Auto approve and merge
on: pull_request_target
permissions:
pull-requests: write
contents: write
jobs:
auto-approve-merge:
name: Auto approve and merge Dependabot PRs
if: github.event.pull_request.user.login == 'dependabot[bot]'
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- name: Approve PR
uses: hmarr/auto-approve-action@v4
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
review-message: 'Auto approved Dependabot PR'
- name: Merge PR
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}