We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c58f25 commit bb57c6cCopy full SHA for bb57c6c
1 file changed
src/config.py
@@ -40,9 +40,9 @@ def __init__(self):
40
"""Initialize configuration from environment variables."""
41
self.ecosystems = self._parse_ecosystems()
42
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)
+ self.github_token = self._get_required("INPUT_GH-TOKEN")
+ self.dry_run = self._get_bool("INPUT_DRY-RUN", False)
+ self.max_alerts = self._get_int("INPUT_MAX-ALERTS", 0)
46
self.verbosity = self._get_str("INPUT_VERBOSITY", "INFO").upper()
47
48
# Validate verbosity level
0 commit comments