Skip to content

Commit

Permalink
Add default to RH_IS_CHECK_RELEASE
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpio authored Jul 16, 2021
1 parent 1ba2fa2 commit 52da98a
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 52da98a

Please sign in to comment.