Update status label when reopening a report based on closed status #6

Merged
Bart van der Braak merged 4 commits from Alaska/blender-bot:reset-to-previous into main 2024-10-01 12:39:44 +02:00
Showing only changes of commit 562593ed26 - Show all commits

View File

@ -51,6 +51,10 @@ def issues_event(data):
if not event["type"] == "label":
# We are only interested in events that modify labels
continue
if not event["body"] == "1":
# "body" = "1" denotes that the label was added.
# And we don't care about labels that were removed.
continue
old_label_name = event["label"]["name"]
if not old_label_name.startswith(status_prefix):
# We are only interested in label events that modify `Status/` labels