From 58a062256ae65a44f839824fdd77135a1d254a9c Mon Sep 17 00:00:00 2001 From: Labhansh Agrawal Date: Tue, 23 Nov 2021 10:00:00 +0530 Subject: [PATCH] Add build artifacts link to e2e comment action --- .github/workflows/e2e_comment.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e_comment.yml b/.github/workflows/e2e_comment.yml index b3d6429d..b9a27eb3 100644 --- a/.github/workflows/e2e_comment.yml +++ b/.github/workflows/e2e_comment.yml @@ -46,11 +46,12 @@ jobs: IMG_MARKDOWN: ${{ join(fromJSON(steps.upload_screenshots.outputs.markdown_urls), '') }} MESSAGE: | Hi there, + Thank you for contributing to Hyper! + You can get the build artifacts from [here](https://nightly.link/{1}/actions/runs/{2}). Here are screenshots of Hyper built from this pr. {0} - Thank you for contributing to Hyper! with: type: create issue_number: ${{ steps.pr_num_reader.outputs.content }} token: ${{ secrets.GITHUB_TOKEN }} - body: ${{ format(env.MESSAGE, env.IMG_MARKDOWN) }} + body: ${{ format(env.MESSAGE, env.IMG_MARKDOWN, env.GITHUB_REPOSITORY, env.GITHUB_RUN_ID) }}