Fix emitting LF-separated GHA environment vars (#84)
Fixes #83 (hopefully)
This commit is contained in:
committed by
GitHub
parent
d99aa3ed71
commit
408336c607
@@ -79,7 +79,7 @@ def set_env(name, value):
|
||||
environment_file_path = os.environ.get("GITHUB_ENV")
|
||||
|
||||
with open(environment_file_path, "a") as environment_file:
|
||||
environment_file.write("%s=%s" % (name, value))
|
||||
environment_file.write("%s=%s\n" % (name, value))
|
||||
|
||||
|
||||
def open_pull_request(title, body, target, source, is_draft=False, can_modify=True):
|
||||
|
||||
Reference in New Issue
Block a user