diff --git a/scripts/python/get_author_origin.py b/scripts/python/get_author_origin.py index 0ff857386..7a6e7804a 100644 --- a/scripts/python/get_author_origin.py +++ b/scripts/python/get_author_origin.py @@ -3,6 +3,10 @@ membrane_team = json.load(sys.stdin) pr_author = sys.argv[1] +if pr_author == "membraneframeworkadmin": + print("MEMBRANE") + sys.exit(0) + try: for person in membrane_team: if person["login"] == pr_author: