Skip to content

Bump @typescript-eslint/eslint-plugin from 6.0.0 to 6.1.0 #5

Bump @typescript-eslint/eslint-plugin from 6.0.0 to 6.1.0

Bump @typescript-eslint/eslint-plugin from 6.0.0 to 6.1.0 #5

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@v1
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}}