Browse Source

Cleaned up a couple of Github action warnings (#3417)

pull/3419/head
Iban Eguia Moraza 1 year ago committed by GitHub
parent
commit
808a08a776
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      .github/workflows/test262.yml

8
.github/workflows/test262.yml

@ -54,7 +54,7 @@ jobs:
# Run the results comparison
- name: Compare results
if: github.event_name == 'pull_request'
id: compare-non-vm
id: compare
shell: bash
run: |
cd boa
@ -85,8 +85,7 @@ jobs:
body: |
### Test262 conformance changes
${{ steps.compare-non-vm.outputs.comment }}
${{ steps.compare-vm.outputs.comment }}
${{ steps.compare.outputs.comment }}
edit-mode: replace
- name: Write a new comment
@ -98,8 +97,7 @@ jobs:
body: |
### Test262 conformance changes
${{ steps.compare-non-vm.outputs.comment }}
${{ steps.compare-vm.outputs.comment }}
${{ steps.compare.outputs.comment }}
# Commit changes to GitHub pages.
- name: Commit files

Loading…
Cancel
Save