Thanks to visit codestin.com
Credit goes to github.com

Skip to content

build(deps-dev): bump @vitest/ui from 1.6.0 to 4.0.1 #1746

build(deps-dev): bump @vitest/ui from 1.6.0 to 4.0.1

build(deps-dev): bump @vitest/ui from 1.6.0 to 4.0.1 #1746

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