Skip to content

Commit c7c91d6

Browse files
authored
Merge pull request #44 from hrshdhgd/use-env-var
Use env var instead of `set-output`
2 parents 697fcfa + 5c4e5e6 commit c7c91d6

File tree

1 file changed

+2
-2
lines changed
  • src/ontobot_change_agent

1 file changed

+2
-2
lines changed

src/ontobot_change_agent/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,8 @@ def process_issue(input: str, repo: str, label: str, number: int, state: str, ou
173173

174174
click.echo(
175175
f"""
176-
::set-output name=PR_BODY::{formatted_body}
177-
::set-output name=PR_TITLE::{issue[TITLE]}
176+
PR_BODY={formatted_body} >> $GITHUB_ENV
177+
PR_TITLE={issue[TITLE]} >> $GITHUB_ENV
178178
"""
179179
)
180180
else:

0 commit comments

Comments
 (0)