diff --git a/scripts/chores.py b/scripts/chores.py index 865d476..91d91c2 100644 --- a/scripts/chores.py +++ b/scripts/chores.py @@ -10,9 +10,9 @@ from datetime import datetime, timedelta FORGEJO_URL = os.environ.get("FORGEJO_URL", "https://git.private.coffee") try: - TOKEN = os.environ["FORGEJO_TOKEN"] + TOKEN = os.environ["PIPELINES_TOKEN"] except KeyError: - logging.error("FORGEJO_TOKEN environment variable is required") + logging.error("PIPELINES_TOKEN environment variable is required") exit(1) ASSIGNEES = os.environ.get("CHORES_ASSIGNEES", "").split()