Skip to content

build(deps): bump k8s.io/client-go from 0.30.0 to 0.30.1 #355

build(deps): bump k8s.io/client-go from 0.30.0 to 0.30.1

build(deps): bump k8s.io/client-go from 0.30.0 to 0.30.1 #355

name: Enable auto-merge for dependabot
on: pull_request_target
permissions:
contents: write
pull-requests: write
jobs:
dependabot-automerge:
timeout-minutes: ${{ fromJSON(vars.GHA_DEFAULT_TIMEOUT) }}
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Gather Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2.1.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Approve PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Enable auto-merge
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}