This is an automated email from the ASF dual-hosted git repository.

russellspitzer pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git


The following commit(s) were added to refs/heads/main by this push:
     new af2f09e  Cleanup "Check md link" config (#245)
af2f09e is described below

commit af2f09e43ec39eacc07298a64666b43f87a8e5ed
Author: Kevin Liu <[email protected]>
AuthorDate: Wed Sep 25 08:24:45 2024 -0700

    Cleanup "Check md link" config (#245)
---
 .github/workflows/check-md-link-config.json |  2 +-
 .github/workflows/check-md-link.yml         | 10 ++--------
 2 files changed, 3 insertions(+), 9 deletions(-)

diff --git a/.github/workflows/check-md-link-config.json 
b/.github/workflows/check-md-link-config.json
index 82bfe6a..17ebbff 100644
--- a/.github/workflows/check-md-link-config.json
+++ b/.github/workflows/check-md-link-config.json
@@ -1,7 +1,7 @@
 {
   "ignorePatterns": [
     {
-      "pattern": "^https?://(localhost|polaris.apache.org).*"
+      "pattern": "^https?://localhost.*"
     },
     {
       "_comment": "mvnrepository blocks requests originating from GitHub 
Actions",
diff --git a/.github/workflows/check-md-link.yml 
b/.github/workflows/check-md-link.yml
index c71dc5f..cb0c0d3 100644
--- a/.github/workflows/check-md-link.yml
+++ b/.github/workflows/check-md-link.yml
@@ -28,12 +28,6 @@ name: Check Markdown links
 
 on:
   push:
-    paths:
-      - '*.md'  # Top-level .md files
-      - docs/**
-      - regtests/README.md
-      - regtests/client/python/docs/**
-      - regtests/client/python/README.md
     branches:
       - 'main'
   pull_request:
@@ -45,6 +39,6 @@ jobs:
     - uses: actions/checkout@master
     - uses: gaurav-nelson/github-action-markdown-link-check@v1
       with:
+        use-quiet-mode: 'yes'
         config-file: '.github/workflows/check-md-link-config.json'
-        folder-path: '., docs, regtests, regtests/client/python/docs, 
regtests/client/python'
-        use-quiet-mode: true
+        folder-path: '.' # checks all md files

Reply via email to