Skip to content

Bump @testing-library/react from 16.1.0 to 16.2.0 #1193

Bump @testing-library/react from 16.1.0 to 16.2.0

Bump @testing-library/react from 16.1.0 to 16.2.0 #1193

Workflow file for this run

name: Dependabot
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Metadata
id: metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Auto-merge
if: ${{ steps.metadata.outputs.update-type != 'version-update:semver-major' }}
run: |
gh pr review --approve "$PR_URL"
gh pr merge --auto --rebase "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}