Skip to content

Bump @remix-run/node from 2.8.1 to 2.9.2 #203

Bump @remix-run/node from 2.8.1 to 2.9.2

Bump @remix-run/node from 2.8.1 to 2.9.2 #203

Workflow file for this run

name: Enable auto-merge for Dependabot PRs
on:
pull_request:
types: opened
permissions:
contents: write
pull-requests: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- id: metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}