Skip to content

Build(deps): Bump @types/superagent from 8.1.2 to 8.1.3 in /fbg-server #4466

Build(deps): Bump @types/superagent from 8.1.2 to 8.1.3 in /fbg-server

Build(deps): Bump @types/superagent from 8.1.2 to 8.1.3 in /fbg-server #4466

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}}