Skip to content

Commit 4af177d

Browse files
committed
fix(ci): fix report used in generated issue
1 parent 7a6aff0 commit 4af177d

1 file changed

Lines changed: 7 additions & 14 deletions

File tree

.github/workflows/check_eip_versions.yaml

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -44,30 +44,23 @@ jobs:
4444
- name: Generate report file
4545
if: steps.check-eip.outputs.exit_code != 0
4646
run: |
47-
cat > ./reports/outdated_eips.md << 'EOL'
47+
cat > ./reports/outdated_eips.md << EOL
4848
# EIP Version Check Report
4949
5050
This automated check has detected that some EIP references in test files are outdated. This means that the EIPs have been updated in the [ethereum/EIPs](https://github.com/ethereum/EIPs) repository since our tests were last updated.
5151
5252
## Outdated EIP References
5353
54-
The following EIP references need to be updated in our tests:
54+
The EIP spec version checker reports the following failures:
5555
56-
```
57-
$(grep -A 10 "does not match that from ethereum/EIPs" ./reports/eip_check_output.txt || echo "No specific outdated EIPs found in the output.")
58-
```
56+
\`\`\`
57+
$(grep "FAILED.* does not match that from ethereum/EIPs" ./reports/eip_check_output.txt || echo "No specific outdated EIPs found in the output.")
58+
\`\`\`
5959
6060
## Action Required
6161
62-
Please update the EIP reference versions in the affected test files. For each outdated reference:
63-
64-
1. Check the latest version of the EIP in the [ethereum/EIPs](https://github.com/ethereum/EIPs) repository
65-
2. Update the `REFERENCE_SPEC_VERSION` in the test file to the latest commit SHA
66-
3. Verify that the tests still pass with the updated reference
67-
68-
## Additional Information
69-
70-
For more details on the EIP version checking system, please see the documentation in the [execution-spec-tests](https://github.com/ethereum/execution-spec-tests) repository.
62+
1. Please verify whether the affected tests need updating based on the updated EIP spec.
63+
2. Update the EIP reference versions in the affected test files, for details see [the online documentation](https://eest.ethereum.org/main/writing_tests/reference_specification/).
7164
EOL
7265
7366
- name: Create Issue From File

0 commit comments

Comments
 (0)