Skip to content

Bump typescript-eslint from 8.14.0 to 8.15.0 in the all-dependencies group #75

Bump typescript-eslint from 8.14.0 to 8.15.0 in the all-dependencies group

Bump typescript-eslint from 8.14.0 to 8.15.0 in the all-dependencies group #75

Workflow file for this run

name: Auto-merge Dependabot updates
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
enable-auto-merge:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Fetch metadata
id: metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge
if: contains(fromJSON('["version-update:semver-minor", "version-update:semver-patch"]'), steps.metadata.outputs.update-type)
run: gh pr merge --auto --rebase "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}