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

Open
Alaska wants to merge 3 commits from Alaska/blender-bot:reset-to-previous into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
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