Add Dependabot auto-approve workflow
Run the E2E test on kind / setup-test-matrix (push) Successful in 4s
e2e-test-kind.yaml / extract (push) Failing after 12s
Run the E2E test on kind / get-go-version (push) Failing after 13s
Run the E2E test on kind / build (push) Skipped
Run the E2E test on kind / run-e2e-test (push) Skipped

Signed-off-by: Tiger Kaovilai <tkaovila@redhat.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-08-25 10:49:08 -04:00
committed by Tiger Kaovilai
parent a12b373e4c
commit 656b930a2d
@@ -0,0 +1,21 @@
name: "Dependabot Auto Approve"
# pull_request_target means that this will run on pull requests, but in the context of the base repo.
# This should mean PRs from dependabot are supported.
on:
pull_request_target:
types: [opened, reopened, synchronize, ready_for_review]
permissions:
contents: read
pull-requests: write
jobs:
auto-approve:
if: github.repository == 'velero-io/velero' && github.event.pull_request.user.login == 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- name: Auto approve Dependabot PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}