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-python.git
The following commit(s) were added to refs/heads/main by this push:
new a1c6a5a9 Github Action to check links in documentation (#324)
a1c6a5a9 is described below
commit a1c6a5a9c8015983064519697fd7763d22805c4f
Author: Kevin Liu <[email protected]>
AuthorDate: Thu Feb 29 02:50:53 2024 -0800
Github Action to check links in documentation (#324)
* add github add to check md link
* Only run under `mkdocs/**`
* ws
* make lint
---------
Co-authored-by: Fokko Driesprong <[email protected]>
---
.github/workflows/check-md-link.yml | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/.github/workflows/check-md-link.yml
b/.github/workflows/check-md-link.yml
new file mode 100644
index 00000000..b91195e9
--- /dev/null
+++ b/.github/workflows/check-md-link.yml
@@ -0,0 +1,13 @@
+name: Check Markdown links
+
+on:
+ push:
+ paths:
+ - mkdocs/**
+
+jobs:
+ markdown-link-check:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@master
+ - uses: gaurav-nelson/github-action-markdown-link-check@v1