From 7995d2ac3fceda0acca3ea3ae442c960b391cbf9 Mon Sep 17 00:00:00 2001 From: Igor Date: Sun, 14 Sep 2025 13:13:42 +0200 Subject: [PATCH] Add more labels to remove on PR approval Expanded the labelsToRemove array to include additional labels. --- .github/workflows/pr-label-on-approved.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-label-on-approved.yml b/.github/workflows/pr-label-on-approved.yml index d3b52b3e6..97fe00164 100644 --- a/.github/workflows/pr-label-on-approved.yml +++ b/.github/workflows/pr-label-on-approved.yml @@ -42,7 +42,7 @@ jobs: script: | const { owner, repo } = context.repo; const issue_number = ${{ steps.pr.outputs.number }}; - const labelsToRemove = ["Needs review", "Work in progress"]; + const labelsToRemove = ["Needs review", "Work in progress", "Backlog", "Can be closed?", "Help needed", "Needs Documentation"]; for (const name of labelsToRemove) { try {