Skip to content

build(deps): bump k8s.io/apimachinery from 0.29.3 to 0.31.2 #147

build(deps): bump k8s.io/apimachinery from 0.29.3 to 0.31.2

build(deps): bump k8s.io/apimachinery from 0.29.3 to 0.31.2 #147

name: Test and Approve Dependabot PR
on: [pull_request]
permissions:
pull-requests: write
contents: write
jobs:
test-pr:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- uses: actions/[email protected]
- uses: actions/setup-go@v5
with:
go-version: "1.21.x"
cache-dependency-path: ./go.sum
- run: make test
dependabot_pr:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
needs: test-pr
steps:
- name: Dependabot metadata
id: dependabot-metadata
uses: dependabot/[email protected]
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Approve a 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 for Dependabot PRs
if: ${{ steps.dependabot-metadata.outputs.update-type != 'version-update:semver-major' }}
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}