Skip to content

Bump github.com/spf13/viper from 1.18.2 to 1.19.0 #13

Bump github.com/spf13/viper from 1.18.2 to 1.19.0

Bump github.com/spf13/viper from 1.18.2 to 1.19.0 #13

Workflow file for this run

name: Dependabot auto-merge
on:
pull_request_target:
jobs:
automerge:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
uses: dependabot/fetch-metadata@v1
id: metadata
- name: Wait for status checks
uses: lewagon/[email protected]
with:
repo-token: ${{ secrets.MATZBOT_GITHUB_TOKEN }}
ref: ${{ github.event.pull_request.head.sha || github.sha }}
check-regexp: build*
wait-interval: 30
- name: Auto-merge for Dependabot PRs
if: ${{ 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.MATZBOT_GITHUB_TOKEN }}