Skip to content

build(deps-dev): bump @typescript-eslint/eslint-plugin from 6.10.0 to 8.6.0 #106

build(deps-dev): bump @typescript-eslint/eslint-plugin from 6.10.0 to 8.6.0

build(deps-dev): bump @typescript-eslint/eslint-plugin from 6.10.0 to 8.6.0 #106

Workflow file for this run

name: Dependabot PRs
on:
pull_request:
branches:
- main
jobs:
pr:
uses: ./.github/workflows/pr.yml
dependabot:
runs-on: ubuntu-latest
needs: [pr]
if: ${{ github.actor == 'dependabot[bot]' }}
permissions:
actions: write
contents: write
pull-requests: write
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Approve the PR
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 }}