Browse Source

Fixing PR builds (#914)

This should fix PR builds for non-team-members.
pull/908/head
Iban Eguia 4 years ago committed by GitHub
parent
commit
fd181e27d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/workflows/test262.yml

2
.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 }}

Loading…
Cancel
Save