Skip to content

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

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 #78

Workflow file for this run

name: Enable auto-merge
on: pull_request
permissions:
pull-requests: write
contents: write
jobs:
auto-merge:
name: Enable auto-merge
runs-on: ubuntu-latest
#if: ${{ (github.event.pull_request.draft == false) && (github.event.pull_request.user.login == 'dependabot[bot]') }}
if: ${{ github.event.pull_request.draft == false }}
steps:
- name: Set up CLI
uses: ksivamuthu/actions-setup-gh-cli@v3
- name: Enable auto-merge
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}