From 80c7e67a0d3c83baa2124ef5b1fa8a88f8b56808 Mon Sep 17 00:00:00 2001 From: Labhansh Agrawal Date: Thu, 8 Apr 2021 00:36:30 +0530 Subject: [PATCH] Fix spectron pr comment action --- .github/workflows/nodejs.yml | 11 +++++++++++ .github/workflows/spectron_comment.yml | 14 +++++++++++++- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 556318652b8b..affa20a24127 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -62,3 +62,14 @@ jobs: dist/*.deb dist/*.rpm dist/*.exe + - name: Save the pr number in an artifact + if: github.event_name == 'pull_request' + env: + PR_NUM: ${{ github.event.number }} + run: echo $PR_NUM > pr_num.txt + - name: Upload the pr num + uses: actions/upload-artifact@v2 + if: github.event_name == 'pull_request' + with: + name: pr_num + path: ./pr_num.txt diff --git a/.github/workflows/spectron_comment.yml b/.github/workflows/spectron_comment.yml index ff14f0a7aeb6..d2f5ac4cdb87 100644 --- a/.github/workflows/spectron_comment.yml +++ b/.github/workflows/spectron_comment.yml @@ -20,6 +20,18 @@ jobs: workflow: nodejs.yml run_id: ${{ github.event.workflow_run.id }} name: spectron + - name: Get PR number + uses: dawidd6/action-download-artifact@v2.11.0 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + workflow: nodejs.yml + run_id: ${{ github.event.workflow_run.id }} + name: pr_num + - name: Read the pr_num file + id: pr_num_reader + uses: juliangruber/read-file-action@v1.0.0 + with: + path: ./pr_num.txt - name: List images run: ls -al - name: Upload images to imgur @@ -39,6 +51,6 @@ jobs: Thank you for contributing to Hyper! with: type: create - issue_number: ${{ github.event.workflow_run.pull_requests[0].number }} + issue_number: ${{ steps.pr_num_reader.outputs.content }} token: ${{ secrets.GITHUB_TOKEN }} body: ${{ format(env.MESSAGE, env.IMG_MARKDOWN) }}