Skip to content

Commit 3e58e40

Browse files
committed
Fix error with run_local
1 parent e31be22 commit 3e58e40

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ def parse_input() -> dict:
317317
# Provided by gpg action based on organization secrets
318318
"name": os.environ["GPG_NAME"],
319319
"email": os.environ["GPG_EMAIL"],
320-
"run_local": os.environ["RUN_LOCAL"].lower() == "true",
320+
"run_local": os.environ.get("RUN_LOCAL", "False").lower() == "true",
321321
}
322322
return gh_input
323323

0 commit comments

Comments
 (0)