We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e31be22 commit 3e58e40Copy full SHA for 3e58e40
1 file changed
main.py
@@ -317,7 +317,7 @@ def parse_input() -> dict:
317
# Provided by gpg action based on organization secrets
318
"name": os.environ["GPG_NAME"],
319
"email": os.environ["GPG_EMAIL"],
320
- "run_local": os.environ["RUN_LOCAL"].lower() == "true",
+ "run_local": os.environ.get("RUN_LOCAL", "False").lower() == "true",
321
}
322
return gh_input
323
0 commit comments