This is an automated email from the ASF dual-hosted git repository. rusackas pushed a commit to branch linkinator-optionality in repository https://gitbox.apache.org/repos/asf/superset.git
commit 86a5426cf391e272df6466fa75d55d7ee5a6477b Author: Evan Rusackas <[email protected]> AuthorDate: Tue Nov 5 16:11:51 2024 -0700 chore(actions): Making the Linkinator STEP non-blocking, rather than the JOB. --- .github/workflows/superset-docs-verify.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/superset-docs-verify.yml b/.github/workflows/superset-docs-verify.yml index c33b55c6b9..139cd0ae88 100644 --- a/.github/workflows/superset-docs-verify.yml +++ b/.github/workflows/superset-docs-verify.yml @@ -17,12 +17,12 @@ jobs: # See docs here: https://github.com/marketplace/actions/linkinator name: Link Checking runs-on: ubuntu-latest - continue-on-error: true # This will make the job advisory (non-blocking, no red X) steps: - uses: actions/checkout@v4 # Do not bump this linkinator-action version without opening # an ASF Infra ticket to allow the new verison first! - uses: JustinBeckwith/[email protected] + continue-on-error: true # This will make the job advisory (non-blocking, no red X) with: paths: "**/*.md, **/*.mdx" linksToSkip: >-
