Skip to content

build(deps-dev): bump @testing-library/react from 15.0.6 to 16.0.0 #1287

build(deps-dev): bump @testing-library/react from 15.0.6 to 16.0.0

build(deps-dev): bump @testing-library/react from 15.0.6 to 16.0.0 #1287

Workflow file for this run

name: 'Dependabot Automerge'
on: pull_request_target
permissions:
contents: write
pull-requests: write
jobs:
automerge:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: dependabot_metadata
uses: dependabot/fetch-metadata@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Enable auto-merge
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Approve update
if: ${{ steps.dependabot_metadata.outputs.update-type == 'version-update:semver-minor' || steps.dependabot_metadata.outputs.update-type == 'version-update:semver-patch' }}
run: gh pr review $PR_URL --approve -b "Approving this pull request as it is a patch or minor update"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{ secrets.DEPENDABOT_TOKEN }}