diff --git a/.github/workflows/markdown-links.yml b/.github/workflows/markdown-links.yml new file mode 100644 index 000000000..0c6d5079b --- /dev/null +++ b/.github/workflows/markdown-links.yml @@ -0,0 +1,21 @@ +name: Check Markdown links +on: + workflow_dispatch: + + +jobs: + markdown-link-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Link Checker + id: lychee + uses: lycheeverse/lychee-action@v1.9.0 + + - name: Create Issue From File + if: env.lychee_exit_code != 0 + uses: peter-evans/create-issue-from-file@v4 + with: + title: Link Checker Report + content-filepath: ./lychee/out.md + labels: report, automated issue \ No newline at end of file diff --git a/.lycheeignore b/.lycheeignore new file mode 100644 index 000000000..d22e5a7ba --- /dev/null +++ b/.lycheeignore @@ -0,0 +1,2 @@ +https://sepolia.infura.io/v3 +http://127.0.0.1 \ No newline at end of file