chore: add env prefix
This commit is contained in:
parent
fa86bd8d9d
commit
308fc41719
|
@ -686,10 +686,10 @@ def joj3_all_env(
|
||||||
app.pretty_exceptions_enable = False
|
app.pretty_exceptions_enable = False
|
||||||
submitter = os.getenv("GITHUB_ACTOR")
|
submitter = os.getenv("GITHUB_ACTOR")
|
||||||
run_number = os.getenv("GITHUB_RUN_NUMBER")
|
run_number = os.getenv("GITHUB_RUN_NUMBER")
|
||||||
exercise_name = os.getenv("CONF_NAME")
|
exercise_name = os.getenv("JOJ3_CONF_NAME")
|
||||||
commit_hash = os.getenv("GITHUB_SHA")
|
commit_hash = os.getenv("GITHUB_SHA")
|
||||||
run_id = os.getenv("RUN_ID")
|
run_id = os.getenv("JOJ3_RUN_ID")
|
||||||
groups = os.getenv("GROUPS")
|
groups = os.getenv("JOJ3_GROUPS")
|
||||||
repository = os.getenv("GITHUB_REPOSITORY")
|
repository = os.getenv("GITHUB_REPOSITORY")
|
||||||
if None in (
|
if None in (
|
||||||
submitter,
|
submitter,
|
||||||
|
@ -842,9 +842,9 @@ def joj3_check_env(
|
||||||
) -> None:
|
) -> None:
|
||||||
app.pretty_exceptions_enable = False
|
app.pretty_exceptions_enable = False
|
||||||
submitter = os.getenv("GITHUB_ACTOR")
|
submitter = os.getenv("GITHUB_ACTOR")
|
||||||
exercise_name = os.getenv("CONF_NAME")
|
exercise_name = os.getenv("JOJ3_CONF_NAME")
|
||||||
run_id = os.getenv("RUN_ID")
|
run_id = os.getenv("JOJ3_RUN_ID")
|
||||||
groups = os.getenv("GROUPS")
|
groups = os.getenv("JOJ3_GROUPS")
|
||||||
repository = os.getenv("GITHUB_REPOSITORY")
|
repository = os.getenv("GITHUB_REPOSITORY")
|
||||||
if None in (
|
if None in (
|
||||||
submitter,
|
submitter,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user