Skip to content

Bump @typescript-eslint/eslint-plugin from 7.18.0 to 8.18.1 #251

Bump @typescript-eslint/eslint-plugin from 7.18.0 to 8.18.1

Bump @typescript-eslint/eslint-plugin from 7.18.0 to 8.18.1 #251

Workflow file for this run

name: Dependabot automerge
on: pull_request
permissions: write-all
jobs:
dependabot:
name: dependabot
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Test
run: |
make clobber ci-checks
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Auto-merge minor and patch updates
if: (steps.metadata.outputs.update-type == 'version-update:semver-minor') || (steps.metadata.outputs.update-type == 'version-update:semver-patch')
run: gh pr merge --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}