From 9944f044c759e9f02330b2f241107f2e35aa3267 Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Wed, 18 Jun 2025 22:41:49 -0500 Subject: [PATCH] change script --- scripts/process-issues.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/process-issues.py b/scripts/process-issues.py index 620fb0b..96b8c88 100644 --- a/scripts/process-issues.py +++ b/scripts/process-issues.py @@ -103,7 +103,7 @@ def main(): continue print(f">> Will tag issue #{issue_number} with '{stale_tag}'") - update_labels = list(update_labels | {stale_tag}) + update_labels = list(update_labels | stale_tag) # --- Make update with new labels ---