From be6d8a60356b99bb8ad47226fd7efd53f71ab1e8 Mon Sep 17 00:00:00 2001 From: Chris Bargmann Date: Fri, 14 Aug 2026 11:28:24 +0200 Subject: [PATCH] ci: add renovate auto-approve caller workflow --- .github/workflows/renovate-auto-approve.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/renovate-auto-approve.yml diff --git a/.github/workflows/renovate-auto-approve.yml b/.github/workflows/renovate-auto-approve.yml new file mode 100644 index 00000000..f4010c23 --- /dev/null +++ b/.github/workflows/renovate-auto-approve.yml @@ -0,0 +1,14 @@ +# Auto-approve Renovate digest/patch/minor PRs so they can automerge. +# Calls the reusable workflow in opendefensecloud/dev-kit. The automerge policy +# (which update types are eligible) comes from the renovate-config presets. +name: renovate-auto-approve +on: + pull_request: + types: [opened, reopened, synchronize, labeled, unlabeled] +permissions: + pull-requests: write +jobs: + approve: + uses: opendefensecloud/dev-kit/.github/workflows/renovate-auto-approve.yml@8cb6197cd7a2f93bc5cf12c689e48df615f1dbde # post-v1.0.13, pin to next release tag once cut + permissions: + pull-requests: write