Skip to content

Bump import-fresh from 3.3.0 to 3.3.1 in the nextjs group #23

Bump import-fresh from 3.3.0 to 3.3.1 in the nextjs group

Bump import-fresh from 3.3.0 to 3.3.1 in the nextjs group #23

Workflow file for this run

name: pull-request-auto-merge
on:
pull_request:
permissions:
id-token: write
contents: write
pull-requests: write
checks: write
jobs:
pull-request-auto-merge:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Enable auto-merge for Pull Request
run: |
gh pr review --approve "$PR_URL"
gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}