From 2d8aeeeb9dabd2abd721ac343447d628f7708abe Mon Sep 17 00:00:00 2001 From: Leynos Date: Sat, 17 Jan 2026 00:01:06 +0000 Subject: [PATCH] chore(ci): add Dependabot auto-merge GitHub Actions workflow Added a new GitHub Actions workflow to automate auto-merging of Dependabot pull requests. This improves dependency management by reducing manual intervention for updating dependencies. Co-authored-by: terragon-labs[bot] --- .github/workflows/dependabot-automerge.yml | 15 +++++++++++++++ 1 file changed, 15 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..bb5cb319 --- /dev/null +++ b/.github/workflows/dependabot-automerge.yml @@ -0,0 +1,15 @@ +name: Dependabot Auto-merge + +on: + pull_request: + types: [opened, reopened, synchronize, ready_for_review] + workflow_dispatch: + +permissions: + contents: write + pull-requests: write + +jobs: + dependabot-automerge: + uses: leynos/shared-actions/.github/workflows/dependabot-automerge.yml@235d2d07b9a321364a742310873f6732d7228e72 + secrets: inherit