Skip to content

build(deps-dev): bump the minor-and-patch group across 1 directory with 5 updates #131

build(deps-dev): bump the minor-and-patch group across 1 directory with 5 updates

build(deps-dev): bump the minor-and-patch group across 1 directory with 5 updates #131

Workflow file for this run

name: Dependabot
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
automerge:
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- name: Fetch Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Auto-merge minor and patch updates
if:
github.event.workflow_run.conclusion == 'success' && ( steps.metadata.outputs.update-type
== 'version-update:semver-minor' || steps.metadata.outputs.update-type ==
'version-update:semver-patch' )
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}