Skip to content

Commit bb57c6c

Browse files
committed
fix
1 parent 5c58f25 commit bb57c6c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ def __init__(self):
4040
"""Initialize configuration from environment variables."""
4141
self.ecosystems = self._parse_ecosystems()
4242
self.github_repository = self._get_required("GITHUB_REPOSITORY")
43-
self.github_token = self._get_required("INPUT_GH_TOKEN")
44-
self.dry_run = self._get_bool("INPUT_DRY_RUN", False)
45-
self.max_alerts = self._get_int("INPUT_MAX_ALERTS", 0)
43+
self.github_token = self._get_required("INPUT_GH-TOKEN")
44+
self.dry_run = self._get_bool("INPUT_DRY-RUN", False)
45+
self.max_alerts = self._get_int("INPUT_MAX-ALERTS", 0)
4646
self.verbosity = self._get_str("INPUT_VERBOSITY", "INFO").upper()
4747

4848
# Validate verbosity level

0 commit comments

Comments
 (0)