Skip to content

Bump @typescript-eslint/eslint-plugin from 8.17.0 to 8.18.0 #153

Bump @typescript-eslint/eslint-plugin from 8.17.0 to 8.18.0

Bump @typescript-eslint/eslint-plugin from 8.17.0 to 8.18.0 #153

Workflow file for this run

# Autogenerated by https://github.com/change-engine/ecu/github
name: Dependabot auto-approve
on:
pull_request_target:
types: [opened]
permissions:
pull-requests: write
contents: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2.2.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Approve a PR
if: ${{steps.metadata.outputs.update-type != 'version-update:semver-major'}}
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- 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: ${{secrets.GITHUB_TOKEN}}