From f23425b12ba909e292c965b33ddf69ffec48925c Mon Sep 17 00:00:00 2001 From: Peter Svensson Date: Mon, 29 Jun 2026 16:17:33 +0200 Subject: [PATCH] chore(ci): allow self-hosted Renovate bot through review gate Add stc-renovate-app[bot] to the review-gate allowlist so self-hosted Renovate PRs don't require a manual approving review. Claude-Session: https://claude.ai/code/session_01WvBFwZ8xJB9dtb4BxDRHxT --- .github/workflows/review-gate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/review-gate.yaml b/.github/workflows/review-gate.yaml index 2dff3aa..3989927 100644 --- a/.github/workflows/review-gate.yaml +++ b/.github/workflows/review-gate.yaml @@ -21,7 +21,7 @@ jobs: PR_NUMBER: ${{ github.event.pull_request.number }} REPO: ${{ github.repository }} run: | - if [ "$PR_AUTHOR" = "peter-svensson" ]; then + if [ "$PR_AUTHOR" = "peter-svensson" ] || [ "$PR_AUTHOR" = "stc-renovate-app[bot]" ]; then echo "PR by $PR_AUTHOR, no review required" exit 0 fi