From fd181e27d4abf174c74941cea0d8f3e2a85e1b0c Mon Sep 17 00:00:00 2001 From: Iban Eguia Date: Wed, 28 Oct 2020 07:13:31 +0100 Subject: [PATCH] Fixing PR builds (#914) This should fix PR builds for non-team-members. --- .github/workflows/test262.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test262.yml b/.github/workflows/test262.yml index 142897aa4b..5eab798627 100644 --- a/.github/workflows/test262.yml +++ b/.github/workflows/test262.yml @@ -77,6 +77,7 @@ jobs: - name: Update comment if: github.event_name == 'pull_request' && steps.previous-comment.outputs.comment-id uses: peter-evans/create-or-update-comment@v1 + continue-on-error: true with: comment-id: ${{ steps.previous-comment.outputs.comment-id }} body: ${{ steps.compare.outputs.comment }} @@ -85,6 +86,7 @@ jobs: - name: Write a new comment if: github.event_name == 'pull_request' && !steps.previous-comment.outputs.comment-id uses: peter-evans/create-or-update-comment@v1 + continue-on-error: true with: issue-number: ${{ steps.pr-number.outputs.pr }} body: ${{ steps.compare.outputs.comment }}