From 92d90ad0f38a93cded1559237989b4a90805f5d6 Mon Sep 17 00:00:00 2001 From: Jimisola Laursen Date: Sat, 7 Mar 2026 19:19:15 +0100 Subject: [PATCH] ci: fix renovate approve condition to check PR author github.actor reflects who triggered the event (e.g. a human reopening the PR), not who authored it. Use github.event.pull_request.user.login in the caller to correctly identify Renovate-authored PRs regardless of who triggers the workflow. Signed-off-by: jimisola --- .github/workflows/renovate-approve.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/renovate-approve.yml b/.github/workflows/renovate-approve.yml index 49f5e9a..775f1e1 100644 --- a/.github/workflows/renovate-approve.yml +++ b/.github/workflows/renovate-approve.yml @@ -8,4 +8,5 @@ on: jobs: approve: + if: github.event.pull_request.user.login == 'renovate[bot]' uses: reqstool/.github/.github/workflows/renovate-approve.yml@main