Skip to content

chore(deps): bump github.com/alecthomas/kong from 1.6.1 to 1.7.0 in the gomod group #141

chore(deps): bump github.com/alecthomas/kong from 1.6.1 to 1.7.0 in the gomod group

chore(deps): bump github.com/alecthomas/kong from 1.6.1 to 1.7.0 in the gomod group #141

# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions#enable-auto-merge-on-a-pull-request
name: dependabot auto-merge
on:
pull_request:
branches:
- main
permissions: {}
jobs:
dependabot-automerge:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Fetch dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@d7267f607e9d3fb96fc2fbe83e0af444713e90b7 # v2.3.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for Dependabot PRs # these still need approval before merge
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}