Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix variable name for GitHub output #444

Merged
merged 2 commits into from Oct 14, 2022

Conversation

blink1073
Copy link
Contributor

No description provided.

@blink1073 blink1073 added the bug Something isn't working label Oct 14, 2022
@codecov-commenter
Copy link

codecov-commenter commented Oct 14, 2022

Codecov Report

Base: 81.16% // Head: 81.16% // No change to project coverage 👍

Coverage data is based on head (611c9c2) compared to base (a966e00).
Patch coverage: 0.00% of modified lines in pull request are covered.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #444   +/-   ##
=======================================
  Coverage   81.16%   81.16%           
=======================================
  Files          20       20           
  Lines        2824     2824           
  Branches      365      365           
=======================================
  Hits         2292     2292           
  Misses        399      399           
  Partials      133      133           
Impacted Files Coverage Δ
jupyter_releaser/util.py 69.71% <0.00%> (ø)

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

☔ View full report at Codecov.
📢 Do you have feedback about the report comment? Let us know in this issue.

@blink1073 blink1073 enabled auto-merge (squash) October 14, 2022 21:44
@blink1073 blink1073 merged commit 7977e0e into jupyter-server:main Oct 14, 2022
@blink1073 blink1073 deleted the fix-summary-output branch October 14, 2022 22:02
if "GITHUB_ENV" in os.environ:
with open("GITHUB_ENV", "a") as fid:
if "GITHUB_OUTPUT" in os.environ:
with open("GITHUB_OUTPUT", "a") as fid:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should GITHUB_OUTPUT be a file, or an environment variable?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hitting this issue: jupyter/notebook#6579 (comment)

Maybe it should be something like the following:

Suggested change
with open("GITHUB_OUTPUT", "a") as fid:
with open(os.environ["GITHUB_OUTPUT"], "a") as fid:

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Continuing in #451

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants