pr_number is an integer

This commit is contained in:
pseusys
2023-02-26 09:30:49 +01:00
parent 30c30d2c89
commit 2e2497e302
2 changed files with 3 additions and 5 deletions

View File

@@ -46,5 +46,4 @@ class EnvironmentManager:
DEBUG_LOGGING = getenv("INPUT_DEBUG_LOGGING", "0").lower() in _TRUTHY
DEBUG_RUN = getenv("DEBUG_RUN", "False").lower() in _TRUTHY
PR_NUMBER = getenv("PR_NUMBER", "")
CURRENT_GITHUB_ACTION_TOKEN = getenv("CURRENT_GITHUB_ACTION_TOKEN", "")
PR_NUMBER = int(getenv("PR_NUMBER", "0"))