From 94d34cff58d71ca8d7a0ea510fb4c8fd42a5bf02 Mon Sep 17 00:00:00 2001 From: Raaed Bucksimiar <85855492+Deathbot545@users.noreply.github.com> Date: Sat, 14 Mar 2026 11:04:03 +0530 Subject: [PATCH] Fix malformed Resolution/Done condition in resolution notifier workflow --- .github/workflows/resolution_label_notifier.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/resolution_label_notifier.yml b/.github/workflows/resolution_label_notifier.yml index 56d608182b..bd081ca481 100644 --- a/.github/workflows/resolution_label_notifier.yml +++ b/.github/workflows/resolution_label_notifier.yml @@ -16,7 +16,7 @@ jobs: contains(github.event.issue.labels.*.name, 'Resolution/Not a bug') || contains(github.event.issue.labels.*.name, 'Resolution/Postponed') || contains(github.event.issue.labels.*.name, 'Resolution/Won’t Fix') || - contains(github.event.issue.labels.*.name, 'Resolution/Done) + contains(github.event.issue.labels.*.name, 'Resolution/Done') )}} steps: - run: gh issue comment $ISSUE --body "This issue is **NOT** closed with a proper **Resolution/** label. Make sure to add proper reason label before closing. Please add or leave a comment with the proper reason label now.

      - **Resolution/Answered** - Issue is answered.
      - **Resolution/Cannot Reproduce** - Issue cannot be reproduced.
      - **Resolution/Done** - Issue is done.
      - **Resolution/Duplicate** - Issue is already reported before.
      - **Resolution/Fixed** - Issue is fixed.
      - **Resolution/Invalid** - Issue is invalid.
      - **Resolution/Not a bug** - Issue is not a bug.
      - **Resolution/Postponed** - Issue is postponed.
      - **Resolution/Won’t Fix** - Issue won't be fixed."