Skip to content
This repository has been archived by the owner on Jan 2, 2025. It is now read-only.

Bump eslint from 8.57.0 to 9.4.0 in the npm-development group across 1 directory #29

Bump eslint from 8.57.0 to 9.4.0 in the npm-development group across 1 directory

Bump eslint from 8.57.0 to 9.4.0 in the npm-development group across 1 directory #29

Workflow file for this run

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