Skip to content

Bump eslint from 8.57.0 to 9.11.1 #316

Bump eslint from 8.57.0 to 9.11.1

Bump eslint from 8.57.0 to 9.11.1 #316

Workflow file for this run

name: Automerge PRs
on:
pull_request_target:
branches: [ main ]
types: [ opened ]
jobs:
enableAutoMerge:
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Authenticate via APP
id: authentication
uses: ./
with:
appId: ${{ secrets.APP_ID }}
clientId: ${{ secrets.CLIENT_ID }}
privateKey: ${{ secrets.PRIVATE_KEY }}
installationId: ${{ secrets.INSTALLATION_ID }}
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{ steps.authentication.outputs.token }}