From cffc51f65a76e551da48d4c5deb49ccc0f63407c Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Fri, 11 Jul 2025 21:36:23 -0500 Subject: [PATCH] change script --- scripts/process-issues.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/process-issues.py b/scripts/process-issues.py index 96b8c88..7ee7a5a 100644 --- a/scripts/process-issues.py +++ b/scripts/process-issues.py @@ -103,11 +103,11 @@ def main(): continue print(f">> Will tag issue #{issue_number} with '{stale_tag}'") - update_labels = list(update_labels | stale_tag) + update_labels.add(stale_tag) # --- Make update with new labels --- - update_payload = {'labels': update_labels} + update_payload = {'labels': list(update_labels)} update_url = f"{base_api_url}/{issue_number}/labels" print(f">> Updating Issue #{issue_number} ...")