Update release_drafter.py

This commit is contained in:
Robin Wieske 2025-08-21 10:18:42 +02:00
parent 76ca009d05
commit 96a1977368

View file

@ -45,7 +45,7 @@ class ReleaseManager:
"""Validate all required environment variables are present.""" """Validate all required environment variables are present."""
required_vars = { required_vars = {
"FORGEJO_API_URL": os.getenv("INPUT_ENDPOINT"), "FORGEJO_API_URL": os.getenv("INPUT_ENDPOINT"),
"REPO": os.getenv("INPUT_REPO") "REPO": os.getenv("INPUT_REPO"),
"FORGEJO_TOKEN": os.getenv("INPUT_TOKEN"), "FORGEJO_TOKEN": os.getenv("INPUT_TOKEN"),
} }