From e21ecbc17b4f1e28e29881e939e4259d1a787728 Mon Sep 17 00:00:00 2001 From: Eric Hanson <5846501+ericphanson@users.noreply.github.com> Date: Mon, 18 Sep 2023 14:12:30 +0200 Subject: [PATCH] oops, typo --- src/GitHubActions.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GitHubActions.jl b/src/GitHubActions.jl index 052d81d..c1fe9e8 100644 --- a/src/GitHubActions.jl +++ b/src/GitHubActions.jl @@ -230,7 +230,7 @@ function get_gha_level() # `tryparse(Bool, "1")` does not work on Julia 1.0, so we special-case that value # (which is the only documented value for `RUNNER_DEBUG`, so any other case should be # due to the user setting it manually somehow). - env_str == "1" && return DEBUG + env_str == "1" && return Debug # Fallback for all other values: is_debug = something(tryparse(Bool, env_str), false) return is_debug ? Debug : Info