Problem: test_tx_inclusion is flaky when nodes halt due to different gas_wanted #9308
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Markdown links | |
on: | |
schedule: | |
- cron: "* */24 * * *" | |
pull_request: | |
push: | |
branches: | |
- main | |
- release/** | |
jobs: | |
markdown-link-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- id: changed-files | |
uses: tj-actions/changed-files@v41 | |
with: | |
files: | | |
docs/**/*.md | |
- uses: gaurav-nelson/[email protected] | |
if: steps.changed-files.outputs.any_changed == 'true' | |
with: | |
folder-path: "docs" |