Skip to content

Bump github.com/zonedb/zonedb from 1.0.4974 to 1.0.4981 #156

Bump github.com/zonedb/zonedb from 1.0.4974 to 1.0.4981

Bump github.com/zonedb/zonedb from 1.0.4974 to 1.0.4981 #156

Workflow file for this run

name: Auto-merge ZoneDB
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
merge:
runs-on: ubuntu-22.04
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/[email protected]
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for Dependabot PRs
if: ${{contains(steps.metadata.outputs.dependency-names, 'zonedb') && 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}}