Skip to content
This repository was archived by the owner on May 30, 2026. It is now read-only.

Bump github.com/berquerant/ybase from 0.7.1 to 0.8.0 #47

Bump github.com/berquerant/ybase from 0.7.1 to 0.8.0

Bump github.com/berquerant/ybase from 0.7.1 to 0.8.0 #47

Workflow file for this run

name: Dependabot
permissions:
contents: write
on:
pull_request:
branches:
- main
jobs:
dependabot:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Fetch metadata
id: metadata
uses: dependabot/fetch-metadata@v2
with:
alert-lookup: true
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Merge patches and minor development updates
if: |
steps.metadata.outputs.update-type == 'version-update:semver-patch' ||
(steps.metadata.outputs.update-type == 'version-update:semver-minor' &&
steps.metadata.outputs.dependency-type == 'direct:development')
run: gh pr merge --auto --merge ${{ github.event.pull_request.html_url }}
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"