Skip to content

Commit

Permalink
Merge pull request #70 from jtpio/default-env-var-value
Browse files Browse the repository at this point in the history
Add default for `RH_IS_CHECK_RELEASE`
  • Loading branch information
Steven Silvester authored Jul 16, 2021
2 parents 1ba2fa2 + 52da98a commit 685c968
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter_releaser/actions/draft_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from jupyter_releaser.util import log
from jupyter_releaser.util import run

check_release = os.environ.get("RH_IS_CHECK_RELEASE").lower() == "true"
check_release = os.environ.get("RH_IS_CHECK_RELEASE", "").lower() == "true"

if check_release:
log("Handling Check Release action")
Expand Down

0 comments on commit 685c968

Please sign in to comment.