From 2604717301399f496a4e97a1060375e42735579f Mon Sep 17 00:00:00 2001 From: "Jubilee.Yang" Date: Mon, 27 Apr 2026 14:18:43 +0900 Subject: [PATCH] ci(labeler): grant issues/pull-requests write permissions The Review_label workflow was failing with "Resource not accessible by integration" because the default GITHUB_TOKEN no longer has write access. Declare an explicit permissions block so the workflow can add and remove the Need Review and PR/READY2MERGE labels. Signed-off-by: EunjuYang --- .github/workflows/labeler.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 237c11cd..52125b3b 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -4,6 +4,12 @@ on: workflows: ["Check Review"] types: - completed + +permissions: + contents: read + issues: write + pull-requests: write + jobs: on-failure: