From d4ba2b52c70f8ddfd57595bc081cac636ff45031 Mon Sep 17 00:00:00 2001 From: Leynos Date: Sat, 17 Jan 2026 00:00:19 +0000 Subject: [PATCH] feat(ci): add Dependabot auto-merge workflow Introduce a new GitHub Actions workflow to automatically merge Dependabot pull requests under specified conditions to streamline dependency updates. Co-authored-by: terragon-labs[bot] --- .github/workflows/dependabot-automerge.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/dependabot-automerge.yml diff --git a/.github/workflows/dependabot-automerge.yml b/.github/workflows/dependabot-automerge.yml new file mode 100644 index 00000000..899eaa3e --- /dev/null +++ b/.github/workflows/dependabot-automerge.yml @@ -0,0 +1,17 @@ +name: Dependabot auto-merge + +on: + pull_request_target: + types: [opened, reopened, synchronize, ready_for_review, labeled] + workflow_dispatch: + +permissions: + contents: write + pull-requests: write + checks: read + statuses: read + +jobs: + automerge: + if: github.actor == 'dependabot[bot]' + uses: leynos/shared-actions/.github/workflows/dependabot-automerge.yml@235d2d07b9a321364a742310873f6732d7228e72