Skip to content

Commit

Permalink
chore: add env prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
BoYanZh committed Feb 1, 2025
1 parent fa86bd8 commit 308fc41
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions joint_teapot/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -686,10 +686,10 @@ def joj3_all_env(
app.pretty_exceptions_enable = False
submitter = os.getenv("GITHUB_ACTOR")
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")
run_id = os.getenv("RUN_ID")
groups = os.getenv("GROUPS")
run_id = os.getenv("JOJ3_RUN_ID")
groups = os.getenv("JOJ3_GROUPS")
repository = os.getenv("GITHUB_REPOSITORY")
if None in (
submitter,
Expand Down Expand Up @@ -842,9 +842,9 @@ def joj3_check_env(
) -> None:
app.pretty_exceptions_enable = False
submitter = os.getenv("GITHUB_ACTOR")
exercise_name = os.getenv("CONF_NAME")
run_id = os.getenv("RUN_ID")
groups = os.getenv("GROUPS")
exercise_name = os.getenv("JOJ3_CONF_NAME")
run_id = os.getenv("JOJ3_RUN_ID")
groups = os.getenv("JOJ3_GROUPS")
repository = os.getenv("GITHUB_REPOSITORY")
if None in (
submitter,
Expand Down

0 comments on commit 308fc41

Please sign in to comment.