This is an automated email from the ASF dual-hosted git repository. rusackas pushed a commit to branch dead-link-check-v2 in repository https://gitbox.apache.org/repos/asf/superset.git
commit c90b0473d0f6ef3a827b0e7724be1165738138aa Author: Evan Rusackas <[email protected]> AuthorDate: Fri May 10 15:58:01 2024 -0600 using the action twice, for md and mdx --- .github/workflows/superset-docs-verify.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/superset-docs-verify.yml b/.github/workflows/superset-docs-verify.yml index d1e30cd64a..7b22614582 100644 --- a/.github/workflows/superset-docs-verify.yml +++ b/.github/workflows/superset-docs-verify.yml @@ -24,8 +24,12 @@ jobs: with: persist-credentials: false submodules: recursive - - name: markdown-link-check + - name: "Markdown Link Check - .md edition" uses: gaurav-nelson/[email protected] + - name: "Markdown Link Check - .mdx edition" + uses: gaurav-nelson/[email protected] + with: + file-extension: "*.mdx" - name: Set up Node.js 20 uses: actions/setup-node@v4 with:
