From 65d81687f6220eae165c6320f44e9f119f95479c Mon Sep 17 00:00:00 2001 From: Daniels Nagornuks Date: Wed, 27 May 2026 11:28:30 +0100 Subject: [PATCH] Ci: Grant pull-requests:read to pr-verifier caller The top-level `permissions: {}` introduced in e5a5605 locked all permissions to none, blocking the nested `pr-title-check` job in the reusable workflow from requesting `pull-requests: read`. Signed-off-by: Daniels Nagornuks --- .github/workflows/pr-verifier.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-verifier.yml b/.github/workflows/pr-verifier.yml index e2bfc8b8..e45ff6ff 100644 --- a/.github/workflows/pr-verifier.yml +++ b/.github/workflows/pr-verifier.yml @@ -4,7 +4,8 @@ on: pull_request: types: [opened, edited, synchronize, reopened] -permissions: {} +permissions: + pull-requests: read jobs: verify-pr-title: