We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a0695b commit 459a669Copy full SHA for 459a669
main.py
@@ -168,6 +168,9 @@ def add_pr_comments() -> int:
168
print(f"Creating a new comment on PR #{pr_number}.")
169
pull_request.create_comment(body=pr_comments)
170
171
+ # output pr_comments to GitHub Actions
172
+ print(f"::set-output name=pr_comments::{pr_comments}")
173
+
174
return 0 if result_text is None else 1
175
except Exception as e:
176
print(f"Error posting PR comment: {e}", file=sys.stderr)
0 commit comments