This is an automated email from the ASF dual-hosted git repository.
fokko pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/main by this push:
new 5a0372c18c Build: Remove links checker (#10404)
5a0372c18c is described below
commit 5a0372c18c02ffb7322ed1eaeb20a89ed771f633
Author: Fokko Driesprong <[email protected]>
AuthorDate: Sun Jun 9 20:56:32 2024 +0200
Build: Remove links checker (#10404)
Running the links checker from the CI turns out the be
very flaky: https://github.com/apache/iceberg/pull/10397
Let's remove it for now:
cc @manuzhang @pvary
---
.github/workflows/docs-check-links.yml | 43 ----------------------------------
site/link-checker-config.json | 26 --------------------
2 files changed, 69 deletions(-)
diff --git a/.github/workflows/docs-check-links.yml
b/.github/workflows/docs-check-links.yml
deleted file mode 100644
index 4275a2d6ef..0000000000
--- a/.github/workflows/docs-check-links.yml
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements. See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership. The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied. See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
-
-name: Check Markdown docs links
-
-on:
- push:
- paths:
- - docs/**
- - site/**
- branches:
- - 'main'
- pull_request:
- paths:
- - docs/**
- - site/**
- workflow_dispatch:
-
-jobs:
- markdown-link-check:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
- - uses: gaurav-nelson/github-action-markdown-link-check@v1
- with:
- config-file: 'site/link-checker-config.json'
- use-verbose-mode: yes
diff --git a/site/link-checker-config.json b/site/link-checker-config.json
deleted file mode 100644
index 54ff94c014..0000000000
--- a/site/link-checker-config.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "ignorePatterns": [
- {
- "pattern": "^https://www.linkedin.com/"
- },
- {
- "pattern": "^https://mvnrepository.com/"
- },
- {
- "pattern": "^../../javadoc"
- },
- {
- "pattern": "^https://search.maven.org/"
- }
- ],
- "replacementPatterns": [
- {
- "pattern": "^docs/latest/",
- "replacement": "{{BASEURL}}/docs/docs/"
- },
- {
- "pattern": "^../../",
- "replacement": "{{BASEURL}}/site/docs/"
- }
- ]
-}
\ No newline at end of file