Skip to content

Bump github.com/jfk9w-go/based from 1.0.7 to 1.0.8 #35

Bump github.com/jfk9w-go/based from 1.0.7 to 1.0.8

Bump github.com/jfk9w-go/based from 1.0.7 to 1.0.8 #35

Workflow file for this run

name: Dependabot PR
on: pull_request_target
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Approve and auto-merge PR
if: ${{ steps.metadata.outputs.update-type != 'version-update:semver-major' }}
run: |
gh pr review --approve "$PR_URL"
gh pr merge --auto --merge --delete-branch "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.PRIVATE_TOKEN }}