Skip to content

chore(deps): bump github.com/onsi/ginkgo/v2 from 2.28.1 to 2.28.2 in the all-go-deps group #7

chore(deps): bump github.com/onsi/ginkgo/v2 from 2.28.1 to 2.28.2 in the all-go-deps group

chore(deps): bump github.com/onsi/ginkgo/v2 from 2.28.1 to 2.28.2 in the all-go-deps group #7

Workflow file for this run

name: Auto Merge
on:
pull_request:
types: [opened, reopened, labeled]
jobs:
merge:
if: contains(github.event.pull_request.labels.*.name, 'auto-merge')
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
timeout-minutes: 5
steps:
- name: Enable auto-merge
env:
GH_TOKEN: ${{ github.token }}
PR_URL: ${{ github.event.pull_request.html_url }}
run: |
gh pr review --approve --body "LGTM" "$PR_URL"
gh pr merge --auto --squash "$PR_URL"