Skip to content

Build(deps-dev): Bump @typescript-eslint/parser from 6.9.1 to 6.10.0 in /fbg-server #4277

Build(deps-dev): Bump @typescript-eslint/parser from 6.9.1 to 6.10.0 in /fbg-server

Build(deps-dev): Bump @typescript-eslint/parser from 6.9.1 to 6.10.0 in /fbg-server #4277

Workflow file for this run

name: Auto-approval/Auto-merge
on: pull_request
permissions:
pull-requests: write
contents: write
jobs:
autoapprove:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' || github.actor == 'vdfdev' }}
steps:
- name: Auto-approve
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
automerge:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Auto-merge
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}